Hello,
This line seems to work fine:
config.vm.synced_folder “/home/joe53/.vim”, “/home/vagrant/.vim”
This line never copies the .vimrc file:
config.vm.provision “file”, source: “~/.vimrc”, destination: “/home/vagrant/.vimrc”
I have also tried the following, it throws an error about term “name”
config.vm.provision “file”, name: “vimrc”, source: “~/.vimrc”, destination: “/home/vagrant/.vimrc”
Any idea why that will not work would be greatly appreciated.
Thanks,
Joe