mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 19:48:00 +00:00
Use patterns from ruby module for initializing nodenv
This commit is contained in:
parent
e413ef5a97
commit
8dafaae5a4
@ -16,11 +16,12 @@ elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
|
|||||||
|
|
||||||
# Load manually installed nodenv into the shell session.
|
# Load manually installed nodenv into the shell session.
|
||||||
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then
|
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then
|
||||||
eval "$($HOME/.nodenv/bin/nodenv init -)"
|
path=("$HOME/.rbenv/bin $path")
|
||||||
|
eval "$(nodenv init - --no-rehash zsh)"
|
||||||
|
|
||||||
# Load package manager installed nodenv into the shell session.
|
# Load package manager installed nodenv into the shell session.
|
||||||
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nodenv 2>/dev/null)" ]]; then
|
elif (( $+commands[nodenv] )); then
|
||||||
eval "$($(brew --prefix nodenv)/bin/nodenv init -)"
|
eval "$(nodenv init - --no-rehash zsh)"
|
||||||
|
|
||||||
# Return if requirements are not found.
|
# Return if requirements are not found.
|
||||||
elif (( ! $+commands[node] )); then
|
elif (( ! $+commands[node] )); then
|
||||||
|
Loading…
Reference in New Issue
Block a user