Skip to content

Instantly share code, notes, and snippets.

View serheang's full-sized avatar

Ser Heang serheang

View GitHub Profile
@serheang
serheang / Vagrantfile
Created July 13, 2022 11:30 — forked from niw/Vagrantfile
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.