willwm
1/10/2018 - 11:06 PM

Awesome installation script for WSL Ubuntu

Awesome installation script for WSL Ubuntu

bash -c "$(curl -fsSL https://raw.githubusercontent.com/jldeen/dotfiles/wsl/configure.sh)"

# Package Source: Node 10.x (https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions)
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

# Update package cache, upgrade all packages...
sudo apt update && sudo apt full-upgrade -y

# Install: Development Tools...
sudo apt install -y build-essential git nodejs

# Install: timss/vimconf (https://github.com/timss/vimconf#installation)
sudo apt install -y vim exuberant-ctags
mkdir -p ~/.vim/vimconf
git clone https://github.com/timss/vimconf.git ~/.vim/vimconf
ln -s ~/.vim/vimconf/.vimrc ~/.vimrc