mirror of https://github.com/tmux-plugins/tpm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
302 B
10 lines
302 B
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'
|
|
|
|
config.vm.synced_folder './', '/home/vagrant/tpm'
|
|
|
|
config.vm.provision 'shell', path: 'vagrant_provisioning.sh'
|
|
end
|
|
|