summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot_zshrc.tmpl6
1 files changed, 6 insertions, 0 deletions
diff --git a/dot_zshrc.tmpl b/dot_zshrc.tmpl
index 5c67436..d109516 100644
--- a/dot_zshrc.tmpl
+++ b/dot_zshrc.tmpl
@@ -18,6 +18,9 @@ setopt interactive_comments
# Add ~/.local/bin to $PATH
export PATH="$PATH:$HOME/.local/bin"
+# Add go binaries to $PATH
+export PATH="$PATH:$HOME/go/bin"
+
# Basic auto/tab complete:
autoload -U compinit
zstyle ':completion:*' menu select
@@ -131,5 +134,8 @@ alias zource='source $HOME/.zshrc'
# Source the zprofile
source $HOME/.zprofile
+# Source zshenv
+source $HOME/.zshenv
+
# Load Starship
eval "$(starship init zsh)"