npm/yarn: Install to ~/.local
Alan Pearce alan@alanpearce.uk
Mon, 31 Oct 2016 13:22:10 +0100
2 files changed, 9 insertions(+), 0 deletions(-)
M tag-zsh/config/zsh/zshrc → tag-zsh/config/zsh/zshrc
@@ -26,6 +26,11 @@ then path+=($HOME/bin) fi +if [[ ${path[(I)$HOME/.local/bin ]} ]] +then + path+=($HOME/.local/bin) +fi + export EDITOR=emacsclient alias ec=emacsclient alias open-project=projectile @@ -34,6 +39,9 @@ emacsclient -e "($1 \"$2\")" > /dev/null } projectile () { _emacs_function projectile-switch-project-by-name ${1:-$PWD} +} +yarn () { + PREFIX=$HOME/.local command yarn "$@" } ls='\ls'