fix(zsh): correct zsh path

This commit is contained in:
winston 2022-08-14 06:26:05 +02:00
parent b22f5b9569
commit 08a5aa836f
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 4 additions and 1 deletions

View file

@ -52,7 +52,6 @@ export NVM_DIR="$HOME/.config/nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
# yarn
export PATH="$PATH:$HOME/.yarn/bin"
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
### GO ###
export PATH="$PATH:$HOME/go/bin"

View file

@ -157,6 +157,10 @@ if [ -x "$(command -v pyenv)" ]; then
eval "$(pyenv init -)"
fi
# ruby
if [ -x "$(command -v rbenv)" ]; then
eval "$(rbenv init - zsh)"
fi
# }}}
### technical BS {{{