diff options
| -rw-r--r-- | .zshrc | 5 | ||||
| -rwxr-xr-x | setup.sh | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -22,3 +22,8 @@ alias gpull='git pull' alias dotfiles='cd ~/.dotfiles' alias dl='cd ~/Downloads' alias update='brew update && brew upgrade && brew autoremove && brew cleanup' + +# Node version manager +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" @@ -51,3 +51,6 @@ fi if [ ! -e "$HOME/.newsboat" ]; then ln -s "$dotfiles/.newsboat" "$HOME/.newsboat" fi + +# Install verion manager for node.js +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash |
