Skip to content

Instantly share code, notes, and snippets.

@elreydetoda
Last active March 27, 2020 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elreydetoda/8bf9daeb6f53d6e686e9e57552932980 to your computer and use it in GitHub Desktop.
Save elreydetoda/8bf9daeb6f53d6e686e9e57552932980 to your computer and use it in GitHub Desktop.
[personal-blog] Vagrant file used for x11 fowarding blog post https://blog.elreydetoda.site/vim-clipboard-over-ssh/
# https://github.com/elreydetoda/vagrant-files/tree/master/bento_ubuntu-18.04
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-18.04"
config.ssh.forward_agent = true
config.ssh.forward_x11 = true
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y xauth
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment