# Post-install script echo "**Installing Node and NPM with NVM**" echo "source $HOME/.nvm/nvm.sh" >> ./zsh/.zshrc stow -t ~ -R zsh nvm install lts/dubnium nvm use default echo "**Installing Typescript**" npm install -g typescript echo "**Installing some essentials**" sudo pacman -S bat cb fzf ripgrep echo "" echo "All that\'s left is the vim plugins. Install them by running:" echo " $ vim -c \":PlugInstall\"" echo "and then compile YouCompleteMe: " echo " $ python ~/.vim/plugged/YouCompleteMe/install.py --ts-completer --rust-completer" echo "and you're off to the races."