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,8 +13,12 @@ if [[ "$DISABLE_COLOR" != 'true' ]]; then
else else
export CLICOLOR=1 export CLICOLOR=1
export LSCOLORS="exfxcxdxbxegedabagacad" export LSCOLORS="exfxcxdxbxegedabagacad"
if [[ "`uname`" = Linux ]]; then
alias ls='ls -G -F --color=auto'
else
alias ls='ls -G -F' alias ls='ls -G -F'
fi fi
fi
fi fi
alias ll='ls -lh' # Show human readable. alias ll='ls -lh' # Show human readable.