diff --git a/bootstrap.sh b/bootstrap.sh index 9651659..f79a5ab 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,6 +3,10 @@ sudo -S bash -c "apt install bash-completion elinks git zsh curl neovim fortunes apt-file update && \ update-command-not-found" +# node related +curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - +sudo apt-get install -y nodejs + # vim related mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle $HOME/.config/nvim && \ git clone https://github.com/VundleVim/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim &&