Skip to content

Instantly share code, notes, and snippets.

@mattjmorrison
Last active August 29, 2015 14:16
Show Gist options
  • Save mattjmorrison/6093dfe724027bb18c1e to your computer and use it in GitHub Desktop.
Save mattjmorrison/6093dfe724027bb18c1e to your computer and use it in GitHub Desktop.
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.box = "ubuntu-14.04"
config.vm.provision "shell",
inline: <<-CMD
sudo apt-get install git vim python-virtualenv -y
wget https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vimrc -O .vimrc
mkdir -p .vim/plugin-configs
mkdir -p .vim/order-dependent-unite-config
wget https://raw.githubusercontent.com/JarrodCTaylor/dotfiles/master/vim/order-dependent-unite-config/unite.vim -O .vim/order-dependent-unite-config/unite.vim
sudo chown vagrant . -R
CMD
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment