0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

nvm: check $XDG_CONFIG_HOME/nvm for an nvm installation

Closes #7807

Co-authored-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
Chigozirim C 2019-04-27 01:38:14 -06:00 committed by Marc Cornellà
parent d8cb670235
commit d6f3630932

View file

@ -1,5 +1,11 @@
# Set NVM_DIR if it isn't already defined # See https://github.com/nvm-sh/nvm#installation-and-update
[[ -z "$NVM_DIR" ]] && export NVM_DIR="$HOME/.nvm" if [[ -z "$NVM_DIR" ]]; then
if [[ -d "$HOME/.nvm" ]]; then
export NVM_DIR="$HOME/.nvm"
elif [[ -d "${XDG_CONFIG_HOME:-$HOME/.config}/nvm" ]]; then
export NVM_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/nvm"
fi
fi
# Don't try to load nvm if command already available # Don't try to load nvm if command already available
which nvm &> /dev/null && return which nvm &> /dev/null && return