Added vim syntax highlighting to provisioning script (#63)

* fixed provision bug, added vim syntax

* reverted my 'bug fix'
This commit is contained in:
Robert MacDavid
2017-10-24 18:27:34 -04:00
committed by Robert Soule
parent 3f8abb5368
commit f827e874fb
3 changed files with 147 additions and 3 deletions

View File

@@ -10,8 +10,9 @@ Vagrant.configure(2) do |config|
end
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.hostname = "p4"
config.vm.provision "file", source: "p4-logo.png", destination: "/home/vagrant/p4-logo.png"
config.vm.provision "file", source: "p4-logo.png", destination: "/home/vagrant/p4-logo.png"
config.vm.provision "file", source: "p4_16-mode.el", destination: "/home/vagrant/p4_16-mode.el"
config.vm.provision "file", source: "p4.vim", destination: "/home/vagrant/p4.vim"
config.vm.provision "shell", path: "root-bootstrap.sh"
config.vm.provision "shell", privileged: false, path: "user-bootstrap.sh"
end