chadtree icon indicating copy to clipboard operation
chadtree copied to clipboard

LS_COLORS not working

Open simonsolnes opened this issue 2 years ago • 1 comments

NVIM v0.6.1 GNU bash version 3.2.57 macOS 12.3 iTerm 3.4.15

export LSCOLORS='exfxcxdxbxegedabagacad' and export CLICOLOR=1 set in ~/.bash_profile When I ls -lHG, the blue color of folders is correct (as per costumized in iTerm settings), but using CHADTree, the blue color is default blue.

simonsolnes avatar Mar 23 '22 13:03 simonsolnes

Just ran into this issue - macOS uses the BSD version of ls, which uses a different environment variable and color format from the GNU ls ( and this plugin ). A workaround I found is to use this lscolors converter to generate the GNU format string, then add export LS_COLORS='<format string>' in the shell profile.

drewma2k avatar May 24 '22 17:05 drewma2k