Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
27857e66
Unverified
Commit
27857e66
authored
Oct 08, 2020
by
davidfmatheson
Committed by
GitHub
Oct 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nvm: add Homebrew's nvm setup (#8316)
Co-authored-by:
Marc Cornellà
<
marc.cornella@live.com
>
parent
01ce52e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
5 deletions
+29
-5
README.md
plugins/nvm/README.md
+10
-1
nvm.plugin.zsh
plugins/nvm/nvm.plugin.zsh
+19
-4
No files found.
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