all repos — nixfiles @ e8ad75cc4b353fce74463c718bf75777562052d6

System and user configuration, managed by nix and home-manager

zsh: Add go/bin to PATH
Alan Pearce alan@alanpearce.uk
Fri, 21 Apr 2017 16:53:30 +0200
commit

e8ad75cc4b353fce74463c718bf75777562052d6

parent

c5eb5cf892785852c5bfe2ac672263f7e6696160

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

jump to
M zsh/.config/zsh/.zshenvzsh/.config/zsh/.zshenv
@@ -56,6 +56,11 @@ then     path+=($HOME/.local/bin)
   fi
 
+  if [[ ${path[(I)$HOME/go/bin ]} ]]
+  then
+    path+=($HOME/go/bin)
+  fi
+
   export GTAGSCONF=~/.globalrc
   export GTAGSLABEL=ctags
 fi