1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 12:20:27 +00:00
prezto/modules/node/init.zsh

44 lines
1.2 KiB
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
2012-12-13 15:10:55 +00:00
# Loads the Node Version Manager and enables npm completion.
2012-02-01 04:37:51 +00:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
2012-12-13 15:10:55 +00:00
# Zeh Rizzatti <zehrizzatti@gmail.com>
2012-02-01 04:37:51 +00:00
#
2014-10-13 15:57:20 +00:00
# Load manually installed NVM into the shell session.
2012-12-13 15:10:55 +00:00
if [[ -s "$HOME/.nvm/nvm.sh" ]]; then
source "$HOME/.nvm/nvm.sh"
2014-10-13 15:57:20 +00:00
# Load package manager installed NVM into the shell session.
elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then
source $(brew --prefix nvm)/nvm.sh
2012-12-13 15:10:55 +00:00
# Load manually installed nodenv into the shell session.
elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then
path=("$HOME/.nodenv/bin" $path)
eval "$(nodenv init - --no-rehash zsh)"
# Load package manager installed nodenv into the shell session.
elif (( $+commands[nodenv] )); then
eval "$(nodenv init - --no-rehash zsh)"
2012-07-23 19:00:44 +00:00
# Return if requirements are not found.
elif (( ! $+commands[node] )); then
2012-07-04 01:38:56 +00:00
return 1
fi
2012-07-23 19:00:44 +00:00
# Load NPM completion.
if (( $+commands[npm] )); then
cache_file="${0:h}/cache.zsh"
2012-07-04 01:38:56 +00:00
2012-07-23 19:00:44 +00:00
if [[ "$commands[npm]" -nt "$cache_file" || ! -s "$cache_file" ]]; then
# npm is slow; cache its output.
npm completion >! "$cache_file" 2> /dev/null
fi
2012-07-04 01:38:56 +00:00
2012-07-23 19:00:44 +00:00
source "$cache_file"
2012-07-04 01:38:56 +00:00
2012-07-23 19:00:44 +00:00
unset cache_file
fi