You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
842 B
Bash

export PATH="$PATH:$HOME/Library/Python/2.7/bin" # pip installation location
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
export POWERLINEHOME="/Users/drewcassidy/Library/Python/2.7/lib/python/site-packages/powerline"
# added by travis gem
[ -f /Users/drewcassidy/.travis/travis.sh ] && source /Users/drewcassidy/.travis/travis.sh
. $POWERLINEHOME/bindings/zsh/powerline.zsh
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt incappendhistory histexpiredupsfirst histignorespace extendedglob notify
unsetopt nomatch
bindkey -e
# colorize commands
alias ls='ls -G'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
export CLICOLOR=1
export LSCOLORS='ExcxdxfxgxxexcxdxfBxBx'