diff --git a/README.md b/README.md index 19de96a..8be0da7 100644 --- a/README.md +++ b/README.md @@ -97,13 +97,16 @@ make assumptions about how you work. -- start from scratch remove_existing_container = true, -- By default, if no extra config is added, following nvim_dotfiles are - -- installed: "https://github.com/LazyVim/starter" + -- installed: "https://github.com/erichlf/dotfiles" -- This is an example for configuring other dotfiles inside the docker container dotfiles_repository = "https://github.com/erichlf/dotfiles.git", dotfiles_branch = "main", -- branch to clone from dotfiles_repository` dotfiles_targetPath = "~/dotfiles", -- location to install dotfiles dotfiles_intallCommand = "install.sh", -- script to run after dotfiles are cloned shell = "bash", -- shell to use when executing commands + -- The particular binary to use for connecting to in the devcontainer + -- Most likely this should remain nvim + nvim_binary = "nvim", }, keys = { -- stylua: ignore @@ -203,4 +206,4 @@ make test 5. [x] Add unit tests using plenary.busted lua module. 6. [ ] The logs printed in the floating window when preparing the Devcontainer are saved and easy to access. -7. [ ] Convert bash scripts in lua code. +7. [x] Convert bash scripts in lua code. diff --git a/lua/devcontainer-cli/config.lua b/lua/devcontainer-cli/config.lua index 269121b..e896f85 100644 --- a/lua/devcontainer-cli/config.lua +++ b/lua/devcontainer-cli/config.lua @@ -49,8 +49,6 @@ local default_config = { -- The shell to use for executing command. Available sh, bash, zsh or any -- other that uses '-c' to signify a command is to follow shell = 'bash', - -- The name of the socket file to use - port = "7777", } local options