2016-12-29 07:49:55 +00:00
|
|
|
export PATH="$PATH:$HOME/Library/Python/2.7/bin" # pip installation location
|
2017-03-03 06:51:47 +00:00
|
|
|
export PATH="$PATH:$HOME/.local/bin"
|
2016-12-29 07:49:55 +00:00
|
|
|
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
|
2017-03-03 06:51:47 +00:00
|
|
|
export PATH="$PATH:$HOME/Scripts"
|
|
|
|
export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/4.6.2/lib/pkgconfig":$PKG_CONFIG_PATH
|
2016-12-29 07:49:55 +00:00
|
|
|
|
|
|
|
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
|
2017-12-04 07:40:08 +00:00
|
|
|
# alias ls='ls -G'
|
2016-12-29 07:49:55 +00:00
|
|
|
|
|
|
|
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'
|
|
|
|
|
2017-03-03 06:51:47 +00:00
|
|
|
eval $(/usr/libexec/path_helper -s)
|