From 465897550b206993598afc98e0f0a4c81861ed29 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 13 Aug 2024 16:27:48 -0400 Subject: [PATCH] Fixed issue with path going all funky --- zsh/zshenv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zsh/zshenv b/zsh/zshenv index bdfb6a8..7a7e2c9 100644 --- a/zsh/zshenv +++ b/zsh/zshenv @@ -65,15 +65,15 @@ export FZF_ALT_C_OPTS="--preview 'tree -C {} | head -100'" ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=7" -typeset -gU path +typeset -gUx -T PATH path path=( - "$HOME/.cargo/bin/" - "$HOME/.scripts/" + "$HOME/.cargo/bin" + "$HOME/.scripts" "$HOME/.emacs.d/bin/" "$HOME/.yarn/bin/" "$HOME/.config/yarn/global/node_modules/.bin/" "$HOME/.local/bin/" - "$path") + $path) # This will load the specified zsh files if they exist in the $ZDIR/environment directory. # It will load based on hostname & uname.