Created
January 15, 2015 00:01
-
-
Save nicwest/5ca1af7dbc360d9d4ebb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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