diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2015-06-11 01:58:46 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2015-06-11 01:58:46 +0300 |
commit | 3e13603557cf2859332ea2f6d27d12acaef6af95 (patch) | |
tree | 290b78528acd6dcfc1f8bc32c61fbaa1dd1ef187 /test-vm/Vagrantfile | |
parent | 494714049ac1036b23cbfd45ae417577ddf65722 (diff) |
It makes no sense, to clone the powerlevel9k-theme in all frameworks. Instead, we can simply use the one, which is mounted in /vagrant_data..
Diffstat (limited to 'test-vm/Vagrantfile')
-rw-r--r-- | test-vm/Vagrantfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-vm/Vagrantfile b/test-vm/Vagrantfile index bc6c8921..ee53fcdf 100644 --- a/test-vm/Vagrantfile +++ b/test-vm/Vagrantfile @@ -16,7 +16,7 @@ Vagrant.configure(2) do |config| # Bootstrap config.vm.provision :shell, path: "bootstrap.sh", privileged: false - config.vm.provision :shell, path: "plain.sh" + config.vm.provision :shell, path: "plain.sh", privileged: false config.vm.provision :shell, path: "antigen.sh" config.vm.provision :shell, path: "prezto.sh" config.vm.provision :shell, path: "omz.sh" @@ -44,7 +44,7 @@ Vagrant.configure(2) do |config| # the path on the host to the actual folder. The second argument is # the path on the guest to mount the folder. And the optional third # argument is a set of non-required options. - # config.vm.synced_folder "../data", "/vagrant_data" + config.vm.synced_folder "..", "/vagrant_data" # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options. |