summaryrefslogtreecommitdiff
path: root/dot_zshrc.tmpl
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-06-08 22:13:52 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit130d7b10f5e315bd6be89a51cb410270fa461aa2 (patch)
tree70e975ffa49af0233b41aef12ae4d54f02a7c084 /dot_zshrc.tmpl
parent3c7f9097821ab2e82ec417f5b5a1fd179f514ff6 (diff)
feat(zsh): add .zshenv to sourcing
Diffstat (limited to 'dot_zshrc.tmpl')
-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)"