1
0
Fork 0

zsh: Source nvm properly

This commit is contained in:
Jeremy Kaplan 2024-09-18 10:27:26 -04:00
commit f086ec925c
3 changed files with 5 additions and 0 deletions

View file

@ -23,6 +23,7 @@ brew "imagemagick"
brew "jq" brew "jq"
brew "moreutils" brew "moreutils"
brew "neovim" brew "neovim"
brew "nvm"
brew "pipenv" brew "pipenv"
brew "protolint" brew "protolint"
brew "python" brew "python"

View file

@ -73,6 +73,7 @@ ${prompt}"
export RPROMPT='' export RPROMPT=''
# aliases # aliases
source $HOME/.profile
source $HOME/.config/zsh/aliases source $HOME/.config/zsh/aliases
source $HOME/.config/zsh/j.sh source $HOME/.config/zsh/j.sh

View file

@ -6,3 +6,6 @@ export LSCOLORS='Exgxbxdxcxegedabagacad'
alias units='gunits --verbose' alias units='gunits --verbose'
source ~/.profile source ~/.profile
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && source "/opt/homebrew/opt/nvm/nvm.sh"
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && source "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm"