LazyVim / starter

Starter template for LazyVim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Please provide a dockerfile

SamPosh opened this issue · comments

Please provide a dockerfile so that we can use it directly. Mostly we need a ubuntu container
some thing like this which is available for lunarVim.
https://raw.githubusercontent.com/LunarVim/LunarVim/master/utils/docker/Dockerfile.remote

Thanks in advance

This is the way I'm testing my LazyVim with Docker. You might see this usage on other NVim distributions.

docker run -w /root -it --rm alpine:latest sh -uelic '
  apk add git nodejs neovim ripgrep build-base --update
  git clone https://github.com/LazyVim/starter ~/.config/nvim
  nvim
  '

Check the docs. You can find the docker instructions there.