zshrc/linux.zsh

14 lines
389 B
Bash
Raw Normal View History

2011-04-11 22:47:38 +02:00
# activate ls colors, (private if possible)
if [[ -a $HOME/.dir_colors ]]; then
if [[ "$TERM" == *256* ]]; then
which dircolors > /dev/null && eval "`dircolors -b $HOME/.dir_colors`"
else
# standard colors for non-256-color terms
which dircolors > /dev/null && eval "`dircolors -b`"
fi
else
which dircolors > /dev/null && eval "`dircolors -b`"
fi