From 700658defc760ddd7b0c2b5fec2ef26b28b1f7cf Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 6 Oct 2014 14:34:11 -0400 Subject: [PATCH] zsh and git foo --- bashrc | 3 +++ gitconfig | 2 +- zshrc | 3 ++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index b48afa3..fd2ad40 100644 --- a/bashrc +++ b/bashrc @@ -12,3 +12,6 @@ then fi # vim:filetype=sh + +### Added by the Heroku Toolbelt +export PATH="/usr/local/heroku/bin:$PATH" diff --git a/gitconfig b/gitconfig index 0b12d94..b7f6857 100644 --- a/gitconfig +++ b/gitconfig @@ -1,6 +1,6 @@ [user] name = Dan Buch - email = dan@meatballhat.com + email = daniel.buch@gmail.com [github] user = meatballhat diff --git a/zshrc b/zshrc index 4e55642..5f46424 100644 --- a/zshrc +++ b/zshrc @@ -38,6 +38,7 @@ plugins=( ) source $ZSH/oh-my-zsh.sh +[[ -e ~/.zshenv ]] && source ~/.zshenv unsetopt correct_all bindkey '^R' history-incremental-search-backward @@ -70,7 +71,7 @@ path=( eval "$(goenv init -)" export GOPATH="$HOME/gopath" -CDPATH="$HOME/workspace:$HOME/src:$HOME/repos" +CDPATH="$HOME/workspace:$HOME/src:$HOME/Development/src:$HOME/repos" for prefix in github.com code.google.com/p ; do CDPATH="$HOME/gopath/src/$prefix:$CDPATH" done