You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
432 B
13 lines
432 B
Simple `Dockerfile` to create a Docker container based on Fedora 35, with a nightly build of Neovim.
|
|
|
|
To build it use either `docker` or `podman`:
|
|
|
|
```
|
|
$ docker build -t neovim-playground .
|
|
$ docker run -it neovim-playground bash
|
|
```
|
|
|
|
As described in https://www.youtube.com/watch?v=ctH-a-1eUME, you will need to
|
|
run `nvim` twice to get Neovim setup and running. After than you can then try
|
|
out the features mentioned in the video.
|