bashrc & zshrc: add colours to ls on OS X.

This commit is contained in:
Mikaela Suomalainen 2014-05-01 15:24:52 +03:00
parent 5fa0f73979
commit 9f270b438d
2 changed files with 2 additions and 0 deletions

1
bashrc
View File

@ -116,6 +116,7 @@ if [[ $UNAME != Darwin ]]; then
fi
if [[ $UNAME = Darwin ]]; then
alias ls="ls -Gp"
alias ll="ls -alFHGp"
alias l="ls -CFGp"
fi

1
zshrc
View File

@ -310,6 +310,7 @@ if [[ "$UNAME" != "Darwin" ]]; then
fi
if [[ $UNAME = Darwin ]]; then
alias ls="ls -Gp"
alias ll="ls -alFHGp"
alias l="ls -CFGp"
fi