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
27857e66
Unverified
Commit
27857e66
authored
Oct 08, 2020
by
davidfmatheson
Committed by
GitHub
Oct 08, 2020
Browse files
nvm: add Homebrew's nvm setup (#8316)
Co-authored-by:
Marc Cornellà
<
marc.cornella@live.com
>
parent
01ce52e6
Changes
2
Show whitespace changes
Inline
Side-by-side
plugins/nvm/README.md
View file @
27857e66
# nvm plugin
# nvm plugin
This plugin adds autocompletions for
[
nvm
](
https://github.com/
creationix
/nvm
)
— a Node.js version manager.
This plugin adds autocompletions for
[
nvm
](
https://github.com/
nvm-sh
/nvm
)
— a Node.js version manager.
It also automatically sources nvm, so you don't need to do it manually in your
`.zshrc`
.
It also automatically sources nvm, so you don't need to do it manually in your
`.zshrc`
.
To use it, add
`nvm`
to the plugins array of your zshrc file:
To use it, add
`nvm`
to the plugins array of your zshrc file:
```
zsh
```
zsh
plugins
=(
... nvm
)
plugins
=(
... nvm
)
```
```
## Settings
-
**`NVM_DIR`**
: if you have installed nvm in a directory other than
`$HOME/.nvm`
, set and export
`NVM_DIR`
to be the directory where you installed nvm.
-
**`NVM_HOMEBREW`**
: if you installed nvm via Homebrew, in a directory other than
`/usr/local/opt/nvm`
, you
can set
`NVM_HOMEBREW`
to be the directory where you installed it.
plugins/nvm/nvm.plugin.zsh
View file @
27857e66
# Set NVM_DIR if it isn't already defined
# Set NVM_DIR if it isn't already defined
[[
-z
"
$NVM_DIR
"
]]
&&
export
NVM_DIR
=
"
$HOME
/.nvm"
[[
-z
"
$NVM_DIR
"
]]
&&
export
NVM_DIR
=
"
$HOME
/.nvm"
# Try to load nvm only if command not already available
# Don't try to load nvm if command already available
if
!
type
"nvm"
&> /dev/null
;
then
type
"nvm"
&> /dev/null
&&
return
# Load nvm if it exists
[[
-f
"
$NVM_DIR
/nvm.sh"
]]
&&
source
"
$NVM_DIR
/nvm.sh"
# Load nvm if it exists in $NVM_DIR
if
[[
-f
"
$NVM_DIR
/nvm.sh"
]]
;
then
source
"
$NVM_DIR
/nvm.sh"
return
fi
# Otherwise try to load nvm installed via Homebrew
# User can set this if they have an unusual Homebrew setup
NVM_HOMEBREW
=
"
${
NVM_HOMEBREW
:-
/usr/local/opt/nvm
}
"
# Load nvm from Homebrew location if it exists
[[
-f
"
$NVM_HOMEBREW
/nvm.sh"
]]
&&
source
"
$NVM_HOMEBREW
/nvm.sh"
# Load nvm bash completion from Homebrew if it exists
if
[[
-f
"
$NVM_HOMEBREW
/etc/bash_completion.d/nvm"
]]
;
then
autoload
-U
+X bashcompinit
&&
bashcompinit
source
"
$NVM_HOMEBREW
/etc/bash_completion.d/nvm"
fi
fi
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