diff options
author | Alan Pearce | 2017-04-21 16:53:30 +0200 |
---|---|---|
committer | Alan Pearce | 2017-04-21 16:53:30 +0200 |
commit | e8ad75cc4b353fce74463c718bf75777562052d6 (patch) | |
tree | 2a88d3eecc112ce25449eb82d4423b9aeb276034 | |
parent | c5eb5cf892785852c5bfe2ac672263f7e6696160 (diff) | |
download | nixfiles-e8ad75cc4b353fce74463c718bf75777562052d6.tar.lz nixfiles-e8ad75cc4b353fce74463c718bf75777562052d6.tar.zst nixfiles-e8ad75cc4b353fce74463c718bf75777562052d6.zip |
zsh: Add go/bin to PATH
-rw-r--r-- | zsh/.config/zsh/.zshenv | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zsh/.config/zsh/.zshenv b/zsh/.config/zsh/.zshenv index 7569f527..cc647ff7 100644 --- a/zsh/.config/zsh/.zshenv +++ b/zsh/.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 |