forked from thoughtbot/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc.local
39 lines (30 loc) · 841 Bytes
/
zshrc.local
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# load rbenv
eval "$(rbenv init -)"
# Alias hub commands to git
eval "$(hub alias -s)"
# Stop correcting commands
DISABLE_CORRECTION="true"
# Postgres.App
export PATH="/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH"
# Recommended by brew doctor
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
alias gaa='git add -A'
alias gap='git add -p'
alias gb= 'git branch'
alias gcam='git commit -a -m'
alias gcm='git commit -m'
alias gcp='git commit -p'
alias gp='git push'
alias gpu='git pull'
alias gst='git status'
alias cdr='cd ~/repos'
alias cdg='cd ~/repos/gov_congress'
# NVM
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
# Python virtualenvwrapper
# source /usr/local/bin/virtualenvwrapper.sh
# rbenv
export PATH="$HOME/.rbenv/shims:$PATH"
# postgres
export PATH="/usr/local/opt/[email protected]/bin:$PATH"