What even is a commit message

This commit is contained in:
Dan Buch
2015-08-18 20:14:39 -04:00
parent 777f86082b
commit 44d3d31ffe
5 changed files with 28 additions and 8 deletions

24
zshrc
View File

@@ -1,5 +1,5 @@
ZSH=$HOME/.oh-my-zsh
ZSH_THEME=robbyrussell
ZSH_THEME=meatballhat
CASE_SENSITIVE="true"
@@ -40,6 +40,8 @@ plugins=(
git-hubflow
golang
heroku
hk
knife
osx
pip
postgres
@@ -59,6 +61,8 @@ fpath=(/usr/local/share/zsh/site-functions $fpath)
source $ZSH/oh-my-zsh.sh
unalias gb
# The completion for aws is not compatible with $fpath :scream_cat:
if [[ -f /usr/local/share/zsh/site-functions/_aws ]] ; then
source /usr/local/share/zsh/site-functions/_aws
@@ -72,6 +76,7 @@ path=(
$HOME/gopath/bin
$HOME/.rbenv/bin
$HOME/.rbenv/shims
$HOME/.phpenv/bin
/usr/local/sbin
/usr/local/bin
/usr/sbin
@@ -82,7 +87,14 @@ path=(
/usr/local/games
)
eval "$(gimme 1.4.1)" 2>/dev/null
if which pyenv > /dev/null ; then
eval "$(pyenv init -)"
fi
export PYENV_ROOT='/usr/local/var/pyenv'
eval "$(phpenv init -)"
eval "$(gimme 1.4.2)" 2>/dev/null
export GOPATH="$HOME/gopath"
CDPATH="$HOME/workspace:$HOME/src:$HOME/Development/src:$HOME/repos"
@@ -108,8 +120,6 @@ function load-ssh-agent() {
[[ -e ~/.zshenv ]] && source ~/.zshenv
# added by travis gem
[[ -f ~/.travis/travis.sh ]] && source ~/.travis/travis.sh
# added by travis gem
[ -f /Users/me/.travis/travis.sh ] && source /Users/me/.travis/travis.sh
[ -f ~/.travis/travis.sh ] && source ~/.travis/travis.sh
[ -f ~/google-cloud-sdk/path.zsh.inc ] && source ~/google-cloud-sdk/path.zsh.inc
[ -f ~/google-cloud-sdk/completion.zsh.inc ] && source ~/google-cloud-sdk/completion.zsh.inc