Skip to content

Instantly share code, notes, and snippets.

@nicwest
Created January 15, 2015 00:01
Show Gist options
  • Save nicwest/5ca1af7dbc360d9d4ebb to your computer and use it in GitHub Desktop.
Save nicwest/5ca1af7dbc360d9d4ebb to your computer and use it in GitHub Desktop.
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
sudo apt-get update
sudo apt-get -y install vim-gtk git-core
git clone https://github.com/nicwest/QQ.vim.git .vim
SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "chef/debian-7.4"
config.vm.hostname = "QQ19"
config.vm.provision "shell", inline: $script
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment