diff options
author | Florian Pritz <bluewind@xinu.at> | 2019-08-26 08:39:58 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2019-10-08 15:58:14 +0200 |
commit | ca1f695e5a512438c141b0aa178c969286745af7 (patch) | |
tree | 6af7634cdd0b67a44814514406ccfc28ba9c572a | |
parent | fff09bb5122a84a252fe992ca907c70a7a486d14 (diff) | |
download | dotfiles-ca1f695e5a512438c141b0aa178c969286745af7.tar.gz dotfiles-ca1f695e5a512438c141b0aa178c969286745af7.tar.xz |
zshrc: Support golang
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .zshrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,10 @@ if [[ -e "$HOME/.gem/" ]]; then done fi +if [[ -e "$HOME/go/" && -e "$HOME/go/bin" ]]; then + export PATH="$HOME/go/bin:$PATH" +fi + # add extra dirs/symlinks to path. allows to separate script bundles into dirs for _dir in $HOME/bin/extra/*(/N,@N); do export PATH=$_dir:$PATH |