From ca1f695e5a512438c141b0aa178c969286745af7 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 26 Aug 2019 08:39:58 +0200 Subject: zshrc: Support golang Signed-off-by: Florian Pritz --- .zshrc | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v1.2.3-24-g4f1b