Updated zshrc template for mac

This commit is contained in:
Carlos Cardoso 2013-12-21 23:12:27 -02:00
commit 506ddcf190

View file

@ -36,9 +36,14 @@ DISABLE_VENV_CD="1"
plugins=(git postgres tmux python vim-override virtualenvwrapper)
# User configuration
export PATH=$HOME/bin:/usr/local/bin:$PATH
if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi
if [ -e /usr/local/bin ]; then export PATH="/usr/local/bin:$PATH"; fi
export EDITOR='vim'
# Language configuration
if [ -z "$LC_ALL" ]; then export LC_ALL=en_US.UTF-8; fi
if [ -z "$LANG" ]; then export LANG=en_US.UTF-8; fi
# Aliases
alias ta='tmux attach -t'
alias tl='tmux list-session'