Revert " Automatically use .nvmrc"

This reverts commit d85ad95bc9.
This commit is contained in:
Marley Rae 2024-01-25 13:58:24 -08:00
parent 56897108e6
commit b654f354ff

View file

@ -2,31 +2,3 @@
export NVM_COMPLETION=true
source ~/.zsh-plugins/zsh-nvm/zsh-nvm.plugin.zsh
# Call nvm use automatically whenever a directory containing .nvmrc is entered.
autoload -U add-zsh-hook
function load-nvmrc()
{
local nvmrc_path
nvmrc_path="$(nvm_find_nvmrc)"
if [[ -n "$nvmrc_path" ]]; then
local nvmrc_node_version
nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")
if [[ "$nvmrc_node_version" == "N/A" ]]; then
nvm install
elif [[ "$nvmrc_node_version" != "$(nvm version)" ]]; then
nvm use
fi
elif [[ -n "$(PWD=$OLDPWD nvm_find_nvmrc)" ]] \
&& [[ "$(nvm version)" != "$(nvm version default)" ]]; then
echo "Reverting to nvm default version"
nvm use default
fi
}
add-zsh-hook chpwd load-nvmrc
load-nvmrc