summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2019-08-26 08:39:58 +0200
committerFlorian Pritz <bluewind@xinu.at>2019-10-08 15:58:14 +0200
commitca1f695e5a512438c141b0aa178c969286745af7 (patch)
tree6af7634cdd0b67a44814514406ccfc28ba9c572a
parentfff09bb5122a84a252fe992ca907c70a7a486d14 (diff)
downloaddotfiles-ca1f695e5a512438c141b0aa178c969286745af7.tar.gz
dotfiles-ca1f695e5a512438c141b0aa178c969286745af7.tar.xz
zshrc: Support golang
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--.zshrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
index db476dd..012552d 100644
--- a/.zshrc
+++ b/.zshrc
@@ -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