mirror of
https://github.com/drewcassidy/dotfiles
synced 2024-09-01 18:24:06 +00:00
29 lines
842 B
Bash
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'
|
|
|