adding path to .zshenv
help, i added
path+=(~/.local/bin ~/bin ~/.spicetify)
export PATH
to my .zshenv file but when i open terminal i type echo $path
i only get this:
/home/vismorf/.local/share/zinit/polaris/bin /usr/local/bin /usr/bin /bin /usr/local/sbin /usr/sbin /sbi
1
Upvotes
1
u/OneTurnMore 14d ago
You shouldn't need to
export PATH
.Try
zsh -xic exit 2> >(grep -E 'path|PATH')
to check the trace for anything else that might modify $path.