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.
|
2019-04-25 08:00:34 +00:00
|
|
|
if [[ -s "${NVM_DIR:=$HOME/.nvm}/nvm.sh" ]]; then
|
|
|
|
source "${NVM_DIR}/nvm.sh"
|
2014-10-13 15:57:20 +00:00
|
|
|
|
|
|
|
# Load package manager installed NVM into the shell session.
|
2018-12-13 04:17:16 +00:00
|
|
|
elif (( $+commands[brew] )) && \
|
|
|
|
[[ -d "${nvm_prefix::="$(brew --prefix 2> /dev/null)"/opt/nvm}" ]]; then
|
2017-07-23 04:42:51 +00:00
|
|
|
source "$(brew --prefix nvm)/nvm.sh"
|
2018-12-13 04:17:16 +00:00
|
|
|
unset nvm_prefix
|
2012-12-13 15:10:55 +00:00
|
|
|
|
2017-03-16 10:12:18 +00:00
|
|
|
# Load manually installed nodenv into the shell session.
|
2019-04-25 08:00:34 +00:00
|
|
|
elif [[ -s "${NODENV_ROOT:=$HOME/.nodenv}/bin/nodenv" ]]; then
|
|
|
|
path=("${NODENV_ROOT}/bin" $path)
|
2017-04-10 18:15:08 +00:00
|
|
|
eval "$(nodenv init - --no-rehash zsh)"
|
2017-03-16 10:12:18 +00:00
|
|
|
|
|
|
|
# Load package manager installed nodenv into the shell session.
|
2017-04-10 18:15:08 +00:00
|
|
|
elif (( $+commands[nodenv] )); then
|
|
|
|
eval "$(nodenv init - --no-rehash zsh)"
|
2017-03-16 10:12:18 +00:00
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2015-02-24 20:29:25 +00:00
|
|
|
elif (( ! $+commands[node] )); then
|
2012-07-04 01:38:56 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2018-12-07 23:08:12 +00:00
|
|
|
# Load NPM and known helper completions.
|
|
|
|
typeset -A compl_commands=(
|
|
|
|
npm 'npm completion'
|
|
|
|
grunt 'grunt --completion=zsh'
|
2019-01-03 02:04:07 +00:00
|
|
|
gulp 'gulp --completion=zsh'
|
2018-12-07 23:08:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
for compl_command in "${(k)compl_commands[@]}"; do
|
|
|
|
if (( $+commands[$compl_command] )); then
|
2020-06-04 20:53:44 +00:00
|
|
|
cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/$compl_command-cache.zsh"
|
2018-12-07 23:08:12 +00:00
|
|
|
|
|
|
|
# Completion commands are slow; cache their output if old or missing.
|
|
|
|
if [[ "$commands[$compl_command]" -nt "$cache_file" \
|
|
|
|
|| "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
|
|
|
|
|| ! -s "$cache_file" ]]; then
|
2020-06-04 20:53:44 +00:00
|
|
|
mkdir -p "$cache_file:h"
|
2018-12-07 23:08:12 +00:00
|
|
|
command ${=compl_commands[$compl_command]} >! "$cache_file" 2> /dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
source "$cache_file"
|
|
|
|
|
|
|
|
unset cache_file
|
2012-07-23 19:00:44 +00:00
|
|
|
fi
|
2018-12-07 23:08:12 +00:00
|
|
|
done
|
2012-07-04 01:38:56 +00:00
|
|
|
|
2018-12-07 23:08:12 +00:00
|
|
|
unset compl_command{s,}
|