alpha2phi / modern-neovim

Crafting a modernized development environment with Neovim.
MIT License
139 stars 41 forks source link

Better remote support #12

Open meicale opened 1 year ago

meicale commented 1 year ago

It is cool to have different front-ends such as VSCode and vide for neovim and use it remotely. I think it is ok to use neovim in terminal without GUIs, too. VSCode can deal with edit, debug with the help of LSP and DAP in dev-container. Can modern-neovim do that? I think put the all the neovim in container is a good starting point. HOW should we deal with the project with using another docker container without copying the dockerfiles and combine the into one.(Short-cut is change the neovim-Dockerfile base) Because sometimes we don't have the project dockerfile at all, we just build it manually to try things out. Debug is simpler using the debugger(such as debugpy) with remote supported and DAP plugins in neovim. HOW the two docker container interact with each other and can take advantage of the neovim installed in the neovim-container and LSP install either in the neovim-container or project-container(I think the later one is more preferable as VSCode install the LSP Server in the dev-container). If you guys have any ideas, Let me know! MANY THANKS!