Skip to content

Commit

Permalink
Fix up nvm versioning issues in zsh
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnydgreen committed Oct 26, 2020
1 parent 370857c commit cd6d7de
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,31 @@ if command -v nodenv &> /dev/null; then
fi

# NVM
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
if command -v nvm &> /dev/null; then
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Place this after nvm initialization!
autoload -U add-zsh-hook
load-nvmrc() {
local node_version="$(nvm version)"
local nvmrc_path="$(nvm_find_nvmrc)"

if [ -n "$nvmrc_path" ]; then
local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")

if [ "$nvmrc_node_version" = "N/A" ]; then
nvm install
elif [ "$nvmrc_node_version" != "$node_version" ]; then
nvm use
fi
elif [ "$node_version" != "$(nvm version default)" ]; then
echo "Reverting to nvm default version"
nvm use default
fi
}
add-zsh-hook chpwd load-nvmrc
load-nvmrc
fi

# Minikube
Expand Down

0 comments on commit cd6d7de

Please sign in to comment.