Skip to content

Instantly share code, notes, and snippets.

@willwm
Last active July 3, 2018 22:12
Show Gist options
  • Save willwm/e6f3c5fc01215389243858b0c75f33bf to your computer and use it in GitHub Desktop.
Save willwm/e6f3c5fc01215389243858b0c75f33bf to your computer and use it in GitHub Desktop.
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
@willwm
Copy link
Author

willwm commented Jan 10, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment