From 9f270b438d34e03539c234c5483b3efbccfe78cf Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 1 May 2014 15:24:52 +0300 Subject: [PATCH] bashrc & zshrc: add colours to ls on OS X. --- bashrc | 1 + zshrc | 1 + 2 files changed, 2 insertions(+) diff --git a/bashrc b/bashrc index a2e40896..50605922 100644 --- a/bashrc +++ b/bashrc @@ -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 diff --git a/zshrc b/zshrc index 1dee0ad6..9b19d84e 100644 --- a/zshrc +++ b/zshrc @@ -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