Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gregorias/neovim-docker-sandbox
A Docker image for Neovim.
https://github.com/gregorias/neovim-docker-sandbox
dockerfile neovim
Last synced: about 2 months ago
JSON representation
A Docker image for Neovim.
- Host: GitHub
- URL: https://github.com/gregorias/neovim-docker-sandbox
- Owner: gregorias
- License: agpl-3.0
- Created: 2022-11-30T08:26:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-29T15:01:19.000Z (about 1 year ago)
- Last Synced: 2023-10-29T16:21:05.897Z (about 1 year ago)
- Topics: dockerfile, neovim
- Language: Dockerfile
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neovim Docker Sandbox
This repository is a Docker container recipe for a basic Neovim sandbox. I
created this container to facilitate experimenting with Neovim configs.## Build & Run
To build and run this container, execute the following snippet.
1. Build the initial image.
```shell
docker build -t neovim-docker-sandbox .
```1. Run the image:
```shell
docker run -v $(pwd)/config:/root/.config/nvim \
-it neovim-docker-sandbox:latest fish
```1. Bootstrap Neovim's plugins:
```shell
nvim
```1. Update the image in a separate terminal:
```shell
docker ps # Check the container ID.
docker commit CONTAINER_ID neovim-docker-sandbox
```