Created
May 19, 2015 16:55
-
-
Save bjori/d82fcfe8078fa113391a to your computer and use it in GitHub Desktop.
~/.vagrant.d/Vagrantfile
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby et sw=2 : | |
Vagrant.configure(2) do |config| | |
config.vm.provision "file", source: "/home/bjori/.gitconfig", destination: "~/.gitconfig" | |
config.vm.provision "file", source: "/home/bjori/.bashrc", destination: "~/.bashrc" | |
config.vm.provision "file", source: "/home/bjori/.profile", destination: "~/.profile" | |
config.vm.provision "file", source: "/home/bjori/.vimrc", destination: "~/.vimrc" | |
config.vm.provision "file", source: "/home/bjori/.vim", destination: "~/.vim" | |
config.ssh.forward_agent = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment