mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
7 lines
253 B
Bash
7 lines
253 B
Bash
# NodeJS installed by Homebrew
|
|
if [[ -x `which brew` && -d `brew --prefix`/lib/node ]] ; then
|
|
export NODE_PATH="$(brew --prefix)/share/npm/lib/node_modules"
|
|
export PATH="$(brew --prefix)/share/npm/bin:$PATH"
|
|
fi
|
|
|
|
eval "$(npm completion 2>/dev/null)"
|