Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
3e973080
Commit
3e973080
authored
Sep 17, 2018
by
Keith Yao
Committed by
Marc Cornellà
Oct 09, 2020
Browse files
nvm: speed-up nvm loading with `--no-use`
Closes #7138 Co-authored-by:
Marc Cornellà
<
marc.cornella@live.com
>
parent
d6f36309
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/nvm/nvm.plugin.zsh
View file @
3e973080
...
@@ -12,15 +12,22 @@ which nvm &> /dev/null && return
...
@@ -12,15 +12,22 @@ which nvm &> /dev/null && return
if
[[
-f
"
$NVM_DIR
/nvm.sh"
]]
;
then
if
[[
-f
"
$NVM_DIR
/nvm.sh"
]]
;
then
# Load nvm if it exists in $NVM_DIR
# Load nvm if it exists in $NVM_DIR
source
"
$NVM_DIR
/nvm.sh"
source
"
$NVM_DIR
/nvm.sh"
--no-use
else
else
# Otherwise try to load nvm installed via Homebrew
# Otherwise try to load nvm installed via Homebrew
# User can set this if they have an unusual Homebrew setup
# User can set this if they have an unusual Homebrew setup
NVM_HOMEBREW
=
"
${
NVM_HOMEBREW
:-
/usr/local/opt/nvm
}
"
NVM_HOMEBREW
=
"
${
NVM_HOMEBREW
:-
/usr/local/opt/nvm
}
"
# Load nvm from Homebrew location if it exists
# Load nvm from Homebrew location if it exists
[[
-f
"
$NVM_HOMEBREW
/nvm.sh"
]]
&&
source
"
$NVM_HOMEBREW
/nvm.sh"
[[
-f
"
$NVM_HOMEBREW
/nvm.sh"
]]
&&
source
"
$NVM_HOMEBREW
/nvm.sh"
--no-use
fi
fi
# Call nvm when first using node, npm or yarn
function
node npm yarn
{
unfunction node npm yarn
nvm use default
command
"
$0
"
"
$@
"
}
# Load nvm bash completion
# Load nvm bash completion
for
nvm_completion
in
"
$NVM_DIR
/bash_completion"
"
$NVM_HOMEBREW
/etc/bash_completion.d/nvm"
;
do
for
nvm_completion
in
"
$NVM_DIR
/bash_completion"
"
$NVM_HOMEBREW
/etc/bash_completion.d/nvm"
;
do
if
[[
-f
"
$nvm_completion
"
]]
;
then
if
[[
-f
"
$nvm_completion
"
]]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment