Created
January 14, 2015 20:58
-
-
Save nicwest/a04069b3308a4c42d581 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 = "ubuntu/precise64" | |
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