This might be problematic for older zsh version which do not support
%F{..} nor %f.
14 lines
365 B
Bash
14 lines
365 B
Bash
autoload colors; colors
|
|
|
|
# Clear LSCOLORS
|
|
unset LSCOLORS
|
|
|
|
# Main change, you can see directories on a dark background
|
|
#export LSCOLORS=gxfxcxdxbxegedabagacad
|
|
|
|
export CLICOLOR=1
|
|
if [[ $IS_MAC -eq 1 ]]; then
|
|
export LSCOLORS=gxfxcxdxbxegedabagacad
|
|
fi
|
|
export LS_COLORS=di='36;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:'
|
|
|