10 lines
424 B
Bash
10 lines
424 B
Bash
|
# Install NPM packages globally without requiring sudo.
|
||
|
# Source: https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md
|
||
|
NPM_PACKAGES="${HOME}/.npm-packages"
|
||
|
|
||
|
PATH="$NPM_PACKAGES/bin:$PATH"
|
||
|
|
||
|
# 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
|
||
|
export MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
|