Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
21bdb18b
Unverified
Commit
21bdb18b
authored
Feb 27, 2023
by
Carlos Eduardo Monti
Committed by
GitHub
Feb 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(nodenv): add plugin for `nodenv` (#9880)
Co-authored-by:
Matthew Boston
<
matthew@matthewboston.com
>
parent
16050ab8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
README.md
plugins/nodenv/README.md
+20
-0
nodenv.plugin.zsh
plugins/nodenv/nodenv.plugin.zsh
+43
-0
No files found.
plugins/nodenv/README.md
0 → 100644
View file @
21bdb18b
# nodenv plugin
The primary job of this plugin is to provide
`nodenv_prompt_info`
which can be added to your theme to include Node
version information into your prompt.
To use it, add
`nodenv`
to the plugins array in your zshrc file:
```
zsh
plugins
=(
... nodenv
)
```
## Functions
*
`nodenv_prompt_info`
: displays the Node version in use by nodenv; or the global Node
version, if nodenv wasn't found. You can use this function in your prompt by adding
`$(nodenv_prompt_info)`
to PROMPT or RPROMPT:
```zsh
RPROMPT='$(nodenv_prompt_info)'
```
plugins/nodenv/nodenv.plugin.zsh
0 → 100644
View file @
21bdb18b
# This plugin loads nodenv into the current shell and provides prompt info via
# the 'nodenv_prompt_info' function.
FOUND_NODENV
=
${
+commands[nodenv]
}
if
[[
$FOUND_NODENV
-ne
1
]]
;
then
nodenvdirs
=(
"
$HOME
/.nodenv"
"/usr/local/nodenv"
"/opt/nodenv"
"/usr/local/opt/nodenv"
)
for
dir
in
$nodenvdirs
;
do
if
[[
-d
"
${
dir
}
/bin"
]]
;
then
export
PATH
=
"
$PATH
:
${
dir
}
/bin"
FOUND_NODENV
=
1
break
fi
done
if
[[
$FOUND_NODENV
-ne
1
]]
;
then
if
((
$+
commands[brew]
))
&&
dir
=
$(
brew
--prefix
nodenv 2>/dev/null
)
;
then
if
[[
-d
"
${
dir
}
/bin"
]]
;
then
export
PATH
=
"
$PATH
:
${
dir
}
/bin"
FOUND_NODENV
=
1
fi
fi
fi
fi
if
[[
$FOUND_NODENV
-eq
1
]]
;
then
eval
"
$(
nodenv init
--no-rehash
- zsh
)
"
function
nodenv_prompt_info
()
{
nodenv version-name 2>/dev/null
}
else
# fallback to system node
function
nodenv_prompt_info
()
{
echo
"system:
$(
node
-v
2>&1 |
cut
-c
2-
)
"
}
fi
unset
FOUND_NODENV nodenvdirs
dir
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