The Vagrant way

The Vagrant way
This commit is contained in:
Dan Feldman 2020-01-08 14:31:40 +02:00 committed by GitHub
parent d548420d77
commit e94899c443
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -378,3 +378,20 @@ Credit: @axelf4
```vim
:echom test_null_list()
```
## The Vagrant way
Credit: @85danf
To run vim:
```
mkdir -p /tmp/vim
cd /tmp/vim
vagrant init --minimal hashicorp/bionic64
vagrant ssh
vim
```
To exit vim, open another shell, then:
```
cd /tmp/vim
vagrant halt
```