dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 35c69912e2c555d622f8d456927f635099815b4a
parent 42db76e990b5702bedcf041b924433bbb07b6a8e
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Wed, 19 Aug 2015 12:58:47 +0200

fix aliases

Diffstat:
M.zshrc | 15++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/.zshrc b/.zshrc @@ -94,20 +94,21 @@ alias ....='cd ../../..' alias .....='cd ../../../..' alias ......='cd ../../../../..' alias ']'='open' -alias ls='ls -alFh' +#alias ll='ls -alFh' +alias l='ls -alFh' alias la='ls -A' alias lla='ls -lA' -alias l='ls -CF' +#alias l='ls -CF' alias ipython-prof='ipython -m cProfile -s time' alias python-prof='python -m cProfile -s time' alias pipupgrade='pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U' # enable color support of ls and also add handy aliases -#if [[ "$ARCH" != 'Darwin' ]]; then - #alias ls='ls --color=auto' -#else - #alias ls='ls -G' -#fi +if [[ "$ARCH" != 'Darwin' ]]; then + alias ls='ls --color=auto' +else + alias ls='ls -G' +fi #alias dir='dir --color=auto' #alias vdir='vdir --color=auto' alias grep='grep --color=auto'