# HG changeset patch # User zegervdv # Date 1664124642 0 # Node ID 407d461cd377c51711c2d8257d5c95ee07ef0a0c # Parent e1a7072165ac7a748b4a8f738953eff4cda98150 use vivid to generate a color theme for ls, fd, etc diff -r e1a7072165ac -r 407d461cd377 .chezmoiscripts/run_onchange_after_apply-dircolors.sh.tmpl --- a/.chezmoiscripts/run_onchange_after_apply-dircolors.sh.tmpl Sat Sep 24 16:50:20 2022 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,7 +0,0 @@ -{{ if (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) -}} -#!/usr/bin/env zsh - -# .lscolors hash: {{ include "dot_lscolors" | sha256sum }} - -dircolors --sh ~/.lscolors >> ~/.dircolors.zsh -{{ end -}} diff -r e1a7072165ac -r 407d461cd377 .chezmoiscripts/run_onchange_after_apply-vivid.sh.tmpl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.chezmoiscripts/run_onchange_after_apply-vivid.sh.tmpl Sun Sep 25 16:50:42 2022 +0000 @@ -0,0 +1,7 @@ +{{ if (or (eq .chezmoi.os "linux") (eq .chezmoi.os "darwin")) -}} +#!/usr/bin/env zsh + +# colors hash: {{ include "dot_config/vivid/themes/espresso.yml" | sha256sum }} + +vivid generate espresso > {{ joinPath .chezmoi.sourceDir "dot_lscolors" }} +{{ end -}} diff -r e1a7072165ac -r 407d461cd377 dot_config/vivid/themes/espresso.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dot_config/vivid/themes/espresso.yml Sun Sep 25 16:50:42 2022 +0000 @@ -0,0 +1,135 @@ +colors: + + # Based on Espresso Tutti Colori theme + background_color: "fbfafc" + black: "000" + + blue: "2f6f9f" + blue_bg: "f4faff" + bold_blue: "0b51a6" + light_blue: "4f9eeb" + + purple: "4e279a" + light_purple: "7653ca" + purple_bg: "f3f2ff" + + green: "73b00a" + light_green: "e8ffd5" + + red: "d44950" + dark_red: d71707 + + error_fg: f93232 + error_bg: facbcb + + yellow: "fbe9ad" + + gray: "a1a1a1" + darkgray: "888888" + +core: + normal_text: + foreground: darkgray + + regular_file: {} + reset_to_normal: {} + + directory: + foreground: light_blue + + symlink: + foreground: purple + + multi_hard_link: {} + + fifo: + foreground: black + background: blue + + socket: + foreground: black + background: purple + + door: + foreground: black + background: purple + + block_device: + foreground: black + background: light_blue + + character_device: + foreground: black + background: green + + broken_symlink: + foreground: purple + + missing_symlink_target: + foreground: error_fg + background: error_bg + + setuid: {} + + setgid: {} + + file_with_capability: {} + + sticky_other_writable: {} + + other_writable: {} + + sticky: {} + + executable_file: + foreground: light_purple + background: purple_bg + +text: + special: + foreground: black + background: light_green + + todo: + font-style: bold + + licenses: + foreground: gray + + configuration: + foreground: blue + background: blue_bg + + other: + foreground: bold_blue + +markup: + foreground: black + background: light_green + +programming: + source: + foreground: dark_red + + tooling: + foreground: green + + continuous-integration: + foreground: green + +media: + foreground: purple + +office: + foreground: light_blue + +archives: + foreground: green + font-style: underline + +executable: + foreground: light_blue + font-style: bold + +unimportant: + foreground: gray diff -r e1a7072165ac -r 407d461cd377 dot_lscolors --- a/dot_lscolors Sat Sep 24 16:50:20 2022 +0000 +++ b/dot_lscolors Sun Sep 25 16:50:42 2022 +0000 @@ -1,155 +1,1 @@ -# Term Section -TERM xterm-256color - -NORMAL 00;38;2;171;178;191 # no color code at all -FILE 00 # regular file: use no color at all -RESET 00;38;2;171;178;191 # reset to "normal" color -DIR 00;38;2;97;175;239 # directory 01;34 -LINK 00;38;2;86;182;194 # symbolic link. (If you set this to 'target' instead of a -MULTIHARDLINK 00 # regular file with more than one link -FIFO 07;38;2;171;178;191 # pipe -SOCK 07;38;2;171;178;191 # socket -DOOR 07;38;2;171;178;191 # door -BLK 07;38;2;171;178;191 # block device driver -CHR 07;38;2;171;178;191 # character device driver -ORPHAN 00;38;2;190;80;70 # symlink to nonexistent file, or non-stat'able file -SETUID 01;38;2;171;178;191 # file that is setuid (u+s) -SETGID 04;01;38;2;171;178;191 # file that is setgid (g+s) -CAPABILITY 07;38;2;171;178;191 # file with capability -STICKY_OTHER_WRITABLE 04;01;38;2;97;175;239 # dir that is sticky and other-writable (+t,o+w) -OTHER_WRITABLE 01;38;2;97;175;239 # dir that is other-writable (o+w) and not sticky -STICKY 04;38;2;97;175;239 # dir with the sticky bit set (+t) and not other-writable -EXEC 00;38;2;86;182;194 # This is for files with execute permission: - -## Source Code (yellow) -.jl 00;38;2;255;194;75 -.c 00;38;2;255;194;75 -.cpp 00;38;2;255;194;75 -.cc 00;38;2;255;194;75 -.h 00;38;2;255;194;75 -.asm 00;38;2;255;194;75 -.py 00;38;2;255;194;75 -.js 00;38;2;255;194;75 -.java 00;38;2;255;194;75 -.sh 00;38;2;255;194;75 -.zsh 00;38;2;255;194;75 -.bash 00;38;2;255;194;75 -.perl 00;38;2;255;194;75 -.pl 00;38;2;255;194;75 -.go 00;38;2;255;194;75 -.scala 00;38;2;255;194;75 -.m 00;38;2;255;194;75 -.cs 00;38;2;255;194;75 -.r 00;38;2;255;194;75 -.lua 00;38;2;255;194;75 -.vim 00;38;2;255;194;75 -.sv 00;38;2;255;194;75 -.svh 00;38;2;255;194;75 -.v 00;38;2;255;194;75 -.vhd 00;38;2;255;194;75 -.html 00;38;2;255;194;75 - - -## "Useless" files (Comment Grey) -.orig 00;38;2;92;99;112 -.dup 00;38;2;92;99;112 -.rej 00;38;2;92;99;112 - -## Text files (light blue) -.csv 00;38;2;152;195;121 -.txt 00;38;2;152;195;121 -.md 00;38;2;152;195;121 -.toml 00;38;2;152;195;121 -.yml 00;38;2;152;195;121 -.yaml 00;38;2;152;195;121 -.xml 00;38;2;152;195;121 -.json 00;38;2;152;195;121 -.conf 00;38;2;152;195;121 - -## Archives or compressed (light red) -.tar 00;38;2;224;108;117 -.tgz 00;38;2;224;108;117 -.arj 00;38;2;224;108;117 -.taz 00;38;2;224;108;117 -.lzh 00;38;2;224;108;117 -.lzma 00;38;2;224;108;117 -.tlz 00;38;2;224;108;117 -.txz 00;38;2;224;108;117 -.zip 00;38;2;224;108;117 -.z 00;38;2;224;108;117 -.Z 00;38;2;224;108;117 -.dz 00;38;2;224;108;117 -.gz 00;38;2;224;108;117 -.lz 00;38;2;224;108;117 -.xz 00;38;2;224;108;117 -.bz2 00;38;2;224;108;117 -.bz 00;38;2;224;108;117 -.tbz 00;38;2;224;108;117 -.tbz2 00;38;2;224;108;117 -.tz 00;38;2;224;108;117 -.deb 00;38;2;224;108;117 -.rpm 00;38;2;224;108;117 -.jar 00;38;2;224;108;117 -.rar 00;38;2;224;108;117 -.ace 00;38;2;224;108;117 -.zoo 00;38;2;224;108;117 -.cpio 00;38;2;224;108;117 -.7z 00;38;2;224;108;117 -.rz 00;38;2;224;108;117 -.apk 00;38;2;224;108;117 -.gem 00;38;2;224;108;117 - -# Image and Video formats (magenta) -.jpg 00;38;2;198;120;221 -.JPG 00;38;2;198;120;221 #stupid but needed -.jpeg 00;38;2;198;120;221 -.gif 00;38;2;198;120;221 -.bmp 00;38;2;198;120;221 -.pbm 00;38;2;198;120;221 -.pgm 00;38;2;198;120;221 -.ppm 00;38;2;198;120;221 -.tga 00;38;2;198;120;221 -.xbm 00;38;2;198;120;221 -.xpm 00;38;2;198;120;221 -.tif 00;38;2;198;120;221 -.tiff 00;38;2;198;120;221 -.png 00;38;2;198;120;221 -.PNG 00;38;2;198;120;221 -.svg 00;38;2;198;120;221 -.svgz 00;38;2;198;120;221 -.mng 00;38;2;198;120;221 -.pcx 00;38;2;198;120;221 -.dl 00;38;2;198;120;221 -.xcf 00;38;2;198;120;221 -.xwd 00;38;2;198;120;221 -.yuv 00;38;2;198;120;221 -.cgm 00;38;2;198;120;221 -.emf 00;38;2;198;120;221 -.eps 00;38;2;198;120;221 -.CR2 00;38;2;198;120;221 -.ico 00;38;2;198;120;221 -.mov 00;38;2;198;120;221 -.MOV 00;38;2;198;120;221 -.mpg 00;38;2;198;120;221 -.mpeg 00;38;2;198;120;221 -.m2v 00;38;2;198;120;221 -.mkv 00;38;2;198;120;221 -.ogm 00;38;2;198;120;221 -.mp4 00;38;2;198;120;221 -.m4v 00;38;2;198;120;221 -.mp4v 00;38;2;198;120;221 -.vob 00;38;2;198;120;221 -.qt 00;38;2;198;120;221 -.nuv 00;38;2;198;120;221 -.wmv 00;38;2;198;120;221 -.asf 00;38;2;198;120;221 -.rm 00;38;2;198;120;221 -.rmvb 00;38;2;198;120;221 -.flc 00;38;2;198;120;221 -.avi 00;38;2;198;120;221 -.fli 00;38;2;198;120;221 -.flv 00;38;2;198;120;221 -.gl 00;38;2;198;120;221 -.m2ts 00;38;2;198;120;221 -.divx 00;38;2;198;120;221 -.webm 00;38;2;198;120;221 +ex=0;38;2;118;83;202;48;2;243;242;255:ow=0:su=0:ln=0;38;2;78;39;154:di=0;38;2;79;158;235:bd=0;38;2;0;0;0;48;2;79;158;235:cd=0;38;2;0;0;0;48;2;115;176;10:st=0:mh=0:rs=0:so=0;38;2;0;0;0;48;2;78;39;154:tw=0:no=0;38;2;136;136;136:mi=0;38;2;249;50;50;48;2;250;203;203:or=0;38;2;78;39;154:*~=0;38;2;161;161;161:pi=0;38;2;0;0;0;48;2;47;111;159:sg=0:do=0;38;2;0;0;0;48;2;78;39;154:fi=0:ca=0:*.t=0;38;2;215;23;7:*.a=1;38;2;79;158;235:*.z=4;38;2;115;176;10:*.p=0;38;2;215;23;7:*.c=0;38;2;215;23;7:*.d=0;38;2;215;23;7:*.m=0;38;2;215;23;7:*.o=0;38;2;161;161;161:*.r=0;38;2;215;23;7:*.h=0;38;2;215;23;7:*.fs=0;38;2;215;23;7:*.md=0;38;2;0;0;0;48;2;232;255;213:*.cc=0;38;2;215;23;7:*.7z=4;38;2;115;176;10:*.sh=0;38;2;215;23;7:*.la=0;38;2;161;161;161:*.td=0;38;2;215;23;7:*.js=0;38;2;215;23;7:*.as=0;38;2;215;23;7:*css=0;38;2;215;23;7:*.pl=0;38;2;215;23;7:*.pm=0;38;2;215;23;7:*.go=0;38;2;215;23;7:*.ui=0;38;2;47;111;159;48;2;244;250;255:*.pp=0;38;2;215;23;7:*.bz=4;38;2;115;176;10:*.hh=0;38;2;215;23;7:*.bc=0;38;2;161;161;161:*.gv=0;38;2;215;23;7:*.ko=1;38;2;79;158;235:*.py=0;38;2;215;23;7:*.ll=0;38;2;215;23;7:*.hs=0;38;2;215;23;7:*.hi=0;38;2;161;161;161:*.di=0;38;2;215;23;7:*.kt=0;38;2;215;23;7:*.rb=0;38;2;215;23;7:*.gz=4;38;2;115;176;10:*.xz=4;38;2;115;176;10:*.wv=0;38;2;78;39;154:*.ts=0;38;2;215;23;7:*.cs=0;38;2;215;23;7:*.so=1;38;2;79;158;235:*.ps=0;38;2;79;158;235:*.nb=0;38;2;215;23;7:*.ex=0;38;2;215;23;7:*.lo=0;38;2;161;161;161:*.el=0;38;2;215;23;7:*.cr=0;38;2;215;23;7:*.vb=0;38;2;215;23;7:*.ml=0;38;2;215;23;7:*.rm=0;38;2;78;39;154:*.jl=0;38;2;215;23;7:*.mn=0;38;2;215;23;7:*.rs=0;38;2;215;23;7:*.cp=0;38;2;215;23;7:*.exe=1;38;2;79;158;235:*.img=4;38;2;115;176;10:*.xml=0;38;2;0;0;0;48;2;232;255;213:*.arj=4;38;2;115;176;10:*.c++=0;38;2;215;23;7:*.rar=4;38;2;115;176;10:*.htm=0;38;2;0;0;0;48;2;232;255;213:*.wmv=0;38;2;78;39;154:*.odt=0;38;2;79;158;235:*.def=0;38;2;215;23;7:*.ico=0;38;2;78;39;154:*.dox=0;38;2;115;176;10:*.erl=0;38;2;215;23;7:*.fnt=0;38;2;78;39;154:*.dll=1;38;2;79;158;235:*.png=0;38;2;78;39;154:*.ps1=0;38;2;215;23;7:*TODO=1:*.doc=0;38;2;79;158;235:*.fsx=0;38;2;215;23;7:*.rst=0;38;2;0;0;0;48;2;232;255;213:*.cgi=0;38;2;215;23;7:*.wma=0;38;2;78;39;154:*.ipp=0;38;2;215;23;7:*.tmp=0;38;2;161;161;161:*.odp=0;38;2;79;158;235:*.pyo=0;38;2;161;161;161:*.ltx=0;38;2;215;23;7:*.zsh=0;38;2;215;23;7:*.bin=4;38;2;115;176;10:*.bz2=4;38;2;115;176;10:*.m4v=0;38;2;78;39;154:*.php=0;38;2;215;23;7:*.ini=0;38;2;47;111;159;48;2;244;250;255:*.rpm=4;38;2;115;176;10:*.clj=0;38;2;215;23;7:*.dmg=4;38;2;115;176;10:*.pro=0;38;2;115;176;10:*.avi=0;38;2;78;39;154:*.wav=0;38;2;78;39;154:*.vob=0;38;2;78;39;154:*.ogg=0;38;2;78;39;154:*.cxx=0;38;2;215;23;7:*.csx=0;38;2;215;23;7:*.jpg=0;38;2;78;39;154:*.pid=0;38;2;161;161;161:*.htc=0;38;2;215;23;7:*.tif=0;38;2;78;39;154:*.svg=0;38;2;78;39;154:*.sxi=0;38;2;79;158;235:*.blg=0;38;2;161;161;161:*.sty=0;38;2;161;161;161:*.txt=0;38;2;11;81;166:*.cfg=0;38;2;47;111;159;48;2;244;250;255:*.lua=0;38;2;215;23;7:*.zip=4;38;2;115;176;10:*.sbt=0;38;2;215;23;7:*.bib=0;38;2;47;111;159;48;2;244;250;255:*.dpr=0;38;2;215;23;7:*.bcf=0;38;2;161;161;161:*.pyd=0;38;2;161;161;161:*.kts=0;38;2;215;23;7:*.m4a=0;38;2;78;39;154:*.pkg=4;38;2;115;176;10:*.fsi=0;38;2;215;23;7:*.pyc=0;38;2;161;161;161:*.hpp=0;38;2;215;23;7:*.psd=0;38;2;78;39;154:*.eps=0;38;2;78;39;154:*.sxw=0;38;2;79;158;235:*.tbz=4;38;2;115;176;10:*.fon=0;38;2;78;39;154:*.inl=0;38;2;215;23;7:*.elm=0;38;2;215;23;7:*.bak=0;38;2;161;161;161:*.apk=4;38;2;115;176;10:*.mli=0;38;2;215;23;7:*.ics=0;38;2;79;158;235:*.bat=1;38;2;79;158;235:*.mid=0;38;2;78;39;154:*.ttf=0;38;2;78;39;154:*.gvy=0;38;2;215;23;7:*.flv=0;38;2;78;39;154:*.otf=0;38;2;78;39;154:*.yml=0;38;2;47;111;159;48;2;244;250;255:*.xlr=0;38;2;79;158;235:*.ppt=0;38;2;79;158;235:*.iso=4;38;2;115;176;10:*.mp3=0;38;2;78;39;154:*.vim=0;38;2;215;23;7:*.kex=0;38;2;79;158;235:*.tml=0;38;2;47;111;159;48;2;244;250;255:*.swf=0;38;2;78;39;154:*.mov=0;38;2;78;39;154:*.nix=0;38;2;47;111;159;48;2;244;250;255:*.tsx=0;38;2;215;23;7:*.tex=0;38;2;215;23;7:*.rtf=0;38;2;79;158;235:*.dot=0;38;2;215;23;7:*.pgm=0;38;2;78;39;154:*.pod=0;38;2;215;23;7:*.ppm=0;38;2;78;39;154:*.bag=4;38;2;115;176;10:*.ind=0;38;2;161;161;161:*hgrc=0;38;2;115;176;10:*.epp=0;38;2;215;23;7:*.pas=0;38;2;215;23;7:*.aux=0;38;2;161;161;161:*.h++=0;38;2;215;23;7:*.hxx=0;38;2;215;23;7:*.jar=4;38;2;115;176;10:*.exs=0;38;2;215;23;7:*.idx=0;38;2;161;161;161:*.bmp=0;38;2;78;39;154:*.bsh=0;38;2;215;23;7:*.inc=0;38;2;215;23;7:*.xmp=0;38;2;47;111;159;48;2;244;250;255:*.vcd=4;38;2;115;176;10:*.csv=0;38;2;0;0;0;48;2;232;255;213:*.asa=0;38;2;215;23;7:*.pdf=0;38;2;79;158;235:*.mp4=0;38;2;78;39;154:*.ilg=0;38;2;161;161;161:*.mkv=0;38;2;78;39;154:*.log=0;38;2;161;161;161:*.bbl=0;38;2;161;161;161:*.gif=0;38;2;78;39;154:*.tcl=0;38;2;215;23;7:*.toc=0;38;2;161;161;161:*.xcf=0;38;2;78;39;154:*.fls=0;38;2;161;161;161:*.ods=0;38;2;79;158;235:*.bst=0;38;2;47;111;159;48;2;244;250;255:*.cpp=0;38;2;215;23;7:*.sql=0;38;2;215;23;7:*.out=0;38;2;161;161;161:*.tgz=4;38;2;115;176;10:*.com=1;38;2;79;158;235:*.mpg=0;38;2;78;39;154:*.git=0;38;2;161;161;161:*.aif=0;38;2;78;39;154:*.pbm=0;38;2;78;39;154:*.xls=0;38;2;79;158;235:*.pps=0;38;2;79;158;235:*.deb=4;38;2;115;176;10:*.awk=0;38;2;215;23;7:*.zst=4;38;2;115;176;10:*.swp=0;38;2;161;161;161:*.tar=4;38;2;115;176;10:*.mir=0;38;2;215;23;7:*.pptx=0;38;2;79;158;235:*.rlib=0;38;2;161;161;161:*.bash=0;38;2;215;23;7:*.epub=0;38;2;79;158;235:*.psd1=0;38;2;215;23;7:*.psm1=0;38;2;215;23;7:*.jpeg=0;38;2;78;39;154:*.make=0;38;2;115;176;10:*.yaml=0;38;2;47;111;159;48;2;244;250;255:*.opus=0;38;2;78;39;154:*.toml=0;38;2;47;111;159;48;2;244;250;255:*.conf=0;38;2;47;111;159;48;2;244;250;255:*.fish=0;38;2;215;23;7:*.lisp=0;38;2;215;23;7:*.less=0;38;2;215;23;7:*.flac=0;38;2;78;39;154:*.h264=0;38;2;78;39;154:*.mpeg=0;38;2;78;39;154:*.java=0;38;2;215;23;7:*.tiff=0;38;2;78;39;154:*.tbz2=4;38;2;115;176;10:*.purs=0;38;2;215;23;7:*.webm=0;38;2;78;39;154:*.orig=0;38;2;161;161;161:*.html=0;38;2;0;0;0;48;2;232;255;213:*.diff=0;38;2;215;23;7:*.hgrc=0;38;2;115;176;10:*.xlsx=0;38;2;79;158;235:*.dart=0;38;2;215;23;7:*.lock=0;38;2;161;161;161:*.docx=0;38;2;79;158;235:*.json=0;38;2;47;111;159;48;2;244;250;255:*.patch=0;38;2;215;23;7:*.mdown=0;38;2;0;0;0;48;2;232;255;213:*.shtml=0;38;2;0;0;0;48;2;232;255;213:*.cmake=0;38;2;115;176;10:*.ipynb=0;38;2;215;23;7:*shadow=0;38;2;47;111;159;48;2;244;250;255:*.toast=4;38;2;115;176;10:*.swift=0;38;2;215;23;7:*.cache=0;38;2;161;161;161:*.xhtml=0;38;2;0;0;0;48;2;232;255;213:*.scala=0;38;2;215;23;7:*.dyn_o=0;38;2;161;161;161:*passwd=0;38;2;47;111;159;48;2;244;250;255:*README=0;38;2;0;0;0;48;2;232;255;213:*.cabal=0;38;2;215;23;7:*.class=0;38;2;161;161;161:*INSTALL=0;38;2;0;0;0;48;2;232;255;213:*.config=0;38;2;47;111;159;48;2;244;250;255:*.groovy=0;38;2;215;23;7:*.dyn_hi=0;38;2;161;161;161:*.ignore=0;38;2;115;176;10:*.gradle=0;38;2;215;23;7:*.matlab=0;38;2;215;23;7:*TODO.md=1:*LICENSE=0;38;2;161;161;161:*COPYING=0;38;2;161;161;161:*.flake8=0;38;2;115;176;10:*Makefile=0;38;2;115;176;10:*.desktop=0;38;2;47;111;159;48;2;244;250;255:*TODO.txt=1:*Doxyfile=0;38;2;115;176;10:*setup.py=0;38;2;115;176;10:*.gemspec=0;38;2;115;176;10:*configure=0;38;2;115;176;10:*.DS_Store=0;38;2;161;161;161:*.cmake.in=0;38;2;115;176;10:*.fdignore=0;38;2;115;176;10:*.kdevelop=0;38;2;115;176;10:*.markdown=0;38;2;0;0;0;48;2;232;255;213:*COPYRIGHT=0;38;2;161;161;161:*README.md=0;38;2;0;0;0;48;2;232;255;213:*.rgignore=0;38;2;115;176;10:*.gitignore=0;38;2;115;176;10:*SConscript=0;38;2;115;176;10:*SConstruct=0;38;2;115;176;10:*README.txt=0;38;2;0;0;0;48;2;232;255;213:*.gitconfig=0;38;2;115;176;10:*CODEOWNERS=0;38;2;115;176;10:*Dockerfile=0;38;2;47;111;159;48;2;244;250;255:*INSTALL.md=0;38;2;0;0;0;48;2;232;255;213:*.localized=0;38;2;161;161;161:*.scons_opt=0;38;2;161;161;161:*INSTALL.txt=0;38;2;0;0;0;48;2;232;255;213:*.travis.yml=0;38;2;115;176;10:*Makefile.in=0;38;2;161;161;161:*LICENSE-MIT=0;38;2;161;161;161:*.gitmodules=0;38;2;115;176;10:*.synctex.gz=0;38;2;161;161;161:*Makefile.am=0;38;2;115;176;10:*MANIFEST.in=0;38;2;115;176;10:*configure.ac=0;38;2;115;176;10:*.applescript=0;38;2;215;23;7:*appveyor.yml=0;38;2;115;176;10:*.fdb_latexmk=0;38;2;161;161;161:*CONTRIBUTORS=0;38;2;0;0;0;48;2;232;255;213:*.clang-format=0;38;2;115;176;10:*LICENSE-APACHE=0;38;2;161;161;161:*CMakeCache.txt=0;38;2;161;161;161:*.gitattributes=0;38;2;115;176;10:*CMakeLists.txt=0;38;2;115;176;10:*CONTRIBUTORS.md=0;38;2;0;0;0;48;2;232;255;213:*requirements.txt=0;38;2;115;176;10:*.sconsign.dblite=0;38;2;161;161;161:*CONTRIBUTORS.txt=0;38;2;0;0;0;48;2;232;255;213:*package-lock.json=0;38;2;161;161;161:*.CFUserTextEncoding=0;38;2;161;161;161 diff -r e1a7072165ac -r 407d461cd377 dot_zshrc --- a/dot_zshrc Sat Sep 24 16:50:20 2022 +0000 +++ b/dot_zshrc Sun Sep 25 16:50:42 2022 +0000 @@ -78,7 +78,8 @@ export LESS_TERMCAP_us=$(printf "\e[1;32m") export CLICOLOR=1 -source ~/.dircolors.zsh +export LS_COLORS=$(cat ~/.lscolors) +export LSCOLORS=$LS_COLORS # Options setopt monitor