Commit d6f36309 authored by Chigozirim C's avatar Chigozirim C Committed by Marc Cornellà
Browse files

nvm: check $XDG_CONFIG_HOME/nvm for an nvm installation



Closes #7807
Co-authored-by: default avatarMarc Cornellà <marc.cornella@live.com>
parent d8cb6702
# Set NVM_DIR if it isn't already defined
[[ -z "$NVM_DIR" ]] && export NVM_DIR="$HOME/.nvm"
# See https://github.com/nvm-sh/nvm#installation-and-update
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
which nvm &> /dev/null && return
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment