I want to make sure that my development environment has enough free space to install tools and other stuff. I can\'t find any configuration option about telling to Vagrant the m
This should be done using the provider, i.e the virtualbox configuration settings example would be
https://www.vagrantup.com/docs/virtualbox/configuration.html
config.vm.provider "virtualbox" do |v| v.customize ["modifyvm", :id, "--cpuexecutioncap", "50"] end
https://www.virtualbox.org/manual/ch08.html#vboxmanage-list
but in modifyvm section i dont see anything relating to the disk resize !!maybe you can try and attach a secondary disk !!
https://gist.github.com/leifg/4713995