Skip to content

Instantly share code, notes, and snippets.

@rwev
rwev / .aliases
Created May 27, 2021 22:20 — forked from nscornia/.aliases
# 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