fix ls colors on linux

This commit is contained in:
Ashley Dev 2011-07-06 21:16:03 -07:00
commit 1d968a302e

View file

@ -13,7 +13,11 @@ if [[ "$DISABLE_COLOR" != 'true' ]]; then
else
export CLICOLOR=1
export LSCOLORS="exfxcxdxbxegedabagacad"
alias ls='ls -G -F'
if [[ "`uname`" = Linux ]]; then
alias ls='ls -G -F --color=auto'
else
alias ls='ls -G -F'
fi
fi
fi