Created
November 9, 2012 03:09
-
-
Save zackbloom/4043462 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="robbyrussell" | |
DISABLE_AUTO_UPDATE="true" | |
plugins=(git rails ruby) | |
source $ZSH/oh-my-zsh.sh | |
unsetopt correct_all | |
unsetopt sharehistory | |
alias hubspot='fab -f ~/dev/src/workstation_setup/fabfile.py' | |
alias git='hub' | |
export GITHUB_HOST='git.hubteam.com' | |
export DYLD_LIBRARY_PATH=/usr/local/mysql-5.5.22-osx10.6-x86_64/lib | |
export PATH=/Users/zackbloom/dev/virtualenvs/fab_deploy/bin/ | |
export PATH=$PATH:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Users/zbloom/.local/bin:/usr/local/mysq/bin:/usr/local/mysql-5.5.22-osx10.6-x86_64/bin:/Users/zbloom/.local/lib/node_module | |
export PATH=$PATH:/usr/local/Cellar/ruby/1.9.3-p194/bin | |
export EDITOR=/usr/bin/vim | |
alias git='hub' | |
export GITHUB_HOST='git.hubteam.com' | |
export WORKON_HOME=~/dev/virtualenvs | |
source /usr/local/bin/virtualenvwrapper.sh | |
export PIP_VIRTUALENV_BASE= | |
export PIP_RESPECT_VIRTUALENV=true | |
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
alias animal="curl -s 'http://animals.ivolo.me/?index=8'" | |
alias fact="elinks -dump randomfunfacts.com | sed -n '/^| /p' | tr -d \|" | |
alias dep="fact; fab -u zbloom deploy:contacts_web && fab -u zbloom deploy_static:contacts_web" | |
alias depprod="animal; fact; fab -u zbloom deploy:contacts_web,hs_env=prod && fab -u zbloom deploy_static:contacts_web,hs_env=prod" | |
alias gg="git pull origin master" | |
alias gp="git push origin master" | |
alias gs="git status -s" | |
bindkey -v | |
### Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" | |
. ~/.virtualenvchdir.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment