1
0
mirror of https://github.com/tmux-plugins/tpm.git synced 2024-06-22 07:06:42 +02:00
tpm/test/Vagrantfile
2014-07-17 22:16:46 +02:00

12 lines
363 B
Ruby

VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'precise32'
config.vm.box_url = 'http://files.vagrantup.com/precise32.box'
# tpm is synced to `/root/tmux_plugin_manager` in vagrant
config.vm.synced_folder '../', '/home/vagrant/tpm'
config.vm.provision 'shell', path: 'vagrant_provisioning.sh'
end