1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-09-21 00:32:39 +00:00

node: support environment variables NVM_DIR and NODENV_ROOT

This commit is contained in:
laggardkernel 2019-04-25 16:00:34 +08:00 committed by Kaleb Elwert
parent 6ae2f39cc1
commit 61de4d199d

View File

@ -7,8 +7,8 @@
# #
# Load manually installed NVM into the shell session. # Load manually installed NVM into the shell session.
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then if [[ -s "${NVM_DIR:=$HOME/.nvm}/nvm.sh" ]]; then
source "$HOME/.nvm/nvm.sh" source "${NVM_DIR}/nvm.sh"
# Load package manager installed NVM into the shell session. # Load package manager installed NVM into the shell session.
elif (( $+commands[brew] )) && \ elif (( $+commands[brew] )) && \
@ -17,8 +17,8 @@ elif (( $+commands[brew] )) && \
unset nvm_prefix unset nvm_prefix
# Load manually installed nodenv into the shell session. # Load manually installed nodenv into the shell session.
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then elif [[ -s "${NODENV_ROOT:=$HOME/.nodenv}/bin/nodenv" ]]; then
path=("$HOME/.nodenv/bin" $path) path=("${NODENV_ROOT}/bin" $path)
eval "$(nodenv init - --no-rehash zsh)" eval "$(nodenv init - --no-rehash zsh)"
# Load package manager installed nodenv into the shell session. # Load package manager installed nodenv into the shell session.