Skip to content

Instantly share code, notes, and snippets.

@fnando
Last active December 14, 2015 23:19
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fnando/5165132 to your computer and use it in GitHub Desktop.
Save fnando/5165132 to your computer and use it in GitHub Desktop.
My single-box Vagrant settings, VMware Fusion Edition.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.network :private_network, ip: "192.168.33.2"
config.vm.synced_folder ".", "/Projects", id: "vagrant-root"
config.vm.provider(:vmware_fusion) do |v|
v.vmx["memsize"] = "2048"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment