dotfiles/zsh/.oh-my-zsh/custom/npm.zsh

14 lines
584 B
Bash
Raw Normal View History

2016-01-23 00:58:21 +00:00
# Install NPM packages globally without requiring sudo.
# Source: https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md
2016-10-23 04:18:46 +00:00
export NPM_CONFIG_USERCONFIG=$HOME/.config/npm/config
export NPM_CONFIG_CACHE=$HOME/.cache/npm
export NPM_CONFIG_TMP=$XDG_RUNTIME_DIR/npm
export NPM_CONFIG_PREFIX=$HOME/.local/share/npm
PATH="$NPM_CONFIG_PREFIX/bin:$PATH"
2016-01-23 00:58:21 +00:00
# Unset manpath so we can inherit from /etc/manpath via the `manpath` command
unset MANPATH # delete if you already modified MANPATH elsewhere in your config
2016-10-23 04:18:46 +00:00
export MANPATH="$NPM_CONFIG_PREFIX/share/man:$(manpath)"