cloudlena / vide

A containerized IDE powered by NeoVim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vide

Docker Build Docker Pulls

A containerized IDE powered by NeoVim.

This container is filled with all the good stuff from my Vim config. It contains a full "IDE" and is optimized for editing Go, Rust, JavaScript, TypeScript, Markdown and shell scripts.

Usage

By default, the container-internal /src directory will be opened. You'll therefore have to mount your project into there:

$ docker run --rm -it -v "${PWD}:/src" cloudlena/vide

Caveats

Docker Detach keys

ctrl + p triggers a fuzzy search for files. Since this key binding is already used in Docker for detaching from containers, you'll have to press it twice to trigger the fuzzy search. To mitigate this, simply add the following line to your ~/.docker.config.json to change the default keys:

  "detachKeys": "ctrl-e,e"

Resources

Some async jobs like linting JavaScript can be rather resource intensive. If the containers feels slow, consider giving Docker more memory ;-)

About

A containerized IDE powered by NeoVim

License:Other


Languages

Language:Dockerfile 83.6%Language:Makefile 16.4%