Skip to content

Instantly share code, notes, and snippets.

View sc250024's full-sized avatar

Scott Crooks sc250024

  • Miro
  • Utrecht, The Netherlands
  • 10:30 (UTC +02:00)
  • LinkedIn in/jshcrooks
View GitHub Profile
@niw
niw / Vagrantfile
Last active February 22, 2024 10:21
A simple Vagrantfile to setup Ubuntu desktop environment with Google Chrome and Japanese input
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.provider :virtualbox do |v|
v.gui = true
v.memory = 2048
end
# Currently "ubuntu/bionic64" on VirtualBox requires `type: "virtualbox"`
# to make synced folder works.