mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01: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:
parent
d8cb670235
commit
d6f3630932
1 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,11 @@
|
|||
# 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
|
||||
|
|
Loading…
Reference in a new issue