Fix #5604: No DIR ( directory ) colors (#5605)

This commit is contained in:
mingang.he 2016-11-03 21:10:08 +08:00 committed by Marc Cornellà
parent b94d9e26e5
commit 0b340bc3a5
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ if [[ "$DISABLE_LS_COLORS" != "true" ]]; then
(( $+commands[dircolors] )) && eval "$(dircolors -b)"
fi
ls --color -d . &>/dev/null && alias ls='ls --color=tty' || ls -G . &>/dev/null && alias ls='ls -G'
ls --color -d . &>/dev/null && alias ls='ls --color=tty' || { ls -G . &>/dev/null && alias ls='ls -G' }
# Take advantage of $LS_COLORS for completion as well.
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"