nvim-devcontainer-cli
nvim-devcontainer-cli copied to clipboard
The `docker exec` command in `open_shell_in_devcontainer.sh` currently execs as the default user for the image. https://github.com/arnaupv/nvim-devcontainer-cli/blob/8a6b8cdbbdf97de83274a97f6e6f053f047335cf/bin/open_shell_in_devcontainer.sh#L16 It should pull from the `remoteUser` specified in `devcontainer.json` and provide it as the...
I think it would be beneficial to have the dotfiles options setup more like VSCode, i.e. ``` "dotfiles.repository": "", "dotfiles.targetPath": "", "dotfiles.installCommand": "", ``` The major confusing part to me...
It would be pretty nice if this could determine the root of the project directory. My project has several git repos below a main workspace like so ``` . ├──...
It would be pretty nice if instead of firing up a terminal that hides our vi session if [toggleterminal](https://github.com/akinsho/toggleterm.nvim) could be leveraged to handle the terminal. This would actually allow...
Maybe it would be beneficial, especially with LSPs and such, to use [neovim-remote](https://neovim.io/doc/user/remote.html) to pass information to and from the devcontainer. The idea would be that with a neovim remote...
Would it be possible or meaningful to use chezmoi to configure dotfiles in the devcontainer. I think it would be extremely useful and more general? https://www.chezmoi.io/
Currently only Ubuntu/Debian Docker Host are supported for this plugin (tested with Ubuntu 20.04). The plugin needs to be adapted for accepting other OS, such as Windows, MacOS etc.
**Neovim version**: v0.9.1 **OS**: macOS Venture (M2 chip) **Error**: I see the following error when running `DevcontainerUp` ``` #0 154.7 + + curl -s https://api.github.com/repos/jesseduffield/lazygit/releases/latest #0 154.7 grep -Po "tag_name":...
Thanks to the following feature: https://github.com/devcontainers/cli/pull/362 we can update the plugin for accepting custom dotfiles when setting up the devcontainer. ```lua { "arnaupv/nvim-devcontainer-cli", opts = { dotfiles = "https://github.com/arnaupv/dotfiles" }...
If I want to use my own files and have them cloned from github inside the devcontainer, do I need to use the following config options nvim_dotfiles_repo = nvim_dotfiles_branch= nvim_dotfiles_directory=...