summaryrefslogtreecommitdiffstats
path: root/.zprofile
diff options
context:
space:
mode:
Diffstat (limited to '.zprofile')
-rw-r--r--.zprofile12
1 files changed, 11 insertions, 1 deletions
diff --git a/.zprofile b/.zprofile
index 4cb244b..31e6329 100644
--- a/.zprofile
+++ b/.zprofile
@@ -1,11 +1,21 @@
typeset -U PATH path
-path=( $HOME/.local/bin $HOME/.local/opt/nvim-linux64/bin $path )
+path=( $HOME/.local/bin $path )
if test -d /usr/lib/flatpak-xdg-utils/
then
path=( /usr/lib/flatpak-xdg-utils $path )
fi
+if test -d "$HOME/.local/opt/go/bin"
+then
+ path=( "$HOME/.local/opt/go/bin" $path )
+fi
+
+if test -d "$HOME/go/bin"
+then
+ path=( "$HOME/go/bin" $path )
+fi
+
export PATH