Containerized version of my Neovim config
7.1K
A containerized version of my Neovim config for ease of use.
Can be easily launched using a script such as:
#! /bin/bash
container_name=nvim-$USER
if ! docker inspect "${container_name}-home" > /dev/null ; then
docker volume create "${container_name}-home"
fi
docker run --interactive --rm --tty \
--name "$container_name" \
--env "VIM_COLOR=$VIM_COLOR" \
--volume "${container_name}-home:/home/vividboarder/.data" \
--volume "$(pwd):/home/vividboarder/data" \
--workdir /home/vividboarder/data \
--entrypoint /docker-entry.sh \
--user "vividboarder:$(id -g)" \
--group-add users \
vividboarder/my-neovim nvim "$@"
Content type
Image
Digest
sha256:2f17a3f6c…
Size
1.5 GB
Last updated
22 days ago
docker pull vividboarder/my-neovim