all repos — archive/dotfiles @ c03f96261438cf5c3f021f581e3f8d5f8c2aad51

Superseded by nixfiles

zsh: set GOPATH and add bin folder to PATH
Alan Pearce alan@alanpearce.co.uk
Thu, 15 May 2014 20:07:39 +0100
commit

c03f96261438cf5c3f021f581e3f8d5f8c2aad51

parent

2eb99efd81931f9fcd1d0da2f93a366edc11408b

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M tag-zsh/config/zsh/zshenvtag-zsh/config/zsh/zshenv
@@ -1,10 +1,13 @@ # -*- mode: sh; -*-
+export GOPATH="$HOME/projects/go"
+
 if [[ $defpath == ""  && -d ~/bin ]]
 then
 	defpath=($path)
 	path=(
 		$defpath
 		~/bin
+		$GOPATH/bin
 	)
 	if [[ -d ~/.gem/ruby/*/bin ]]
 	then