This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# colored highlighting is awesome | |
if [ "$TERM" != "dumb" ] && [ -x /usr/bin/dircolors ]; then | |
eval `dircolors ~/.dircolors` | |
alias ls='ls -hF --color=auto' | |
alias grep='grep --color=always' | |
alias fgrep='fgrep --color=always' | |
alias egrep='egrep --color=always' | |
fi |