Changing the size of the terminal window on DevcontainerConnect
When running DevcontainerConnect to connect to the running devcontainer, Can I control the size and direction of the terminal window?
I am trying to replicate my current workflow that I have with vscode and was trying to get the terminal window to open in a full screen mode or at least a bigger window.
`{ "erichlf/devcontainer-cli.nvim", dependencies = { "akinsho/toggleterm.nvim" }, init = function() require("devcontainer-cli").setup({ -- only the most useful options shown; see full config below interactive = false, toplevel = true, remove_existing_container = true, dotfiles_repository = "https://github.com/alfrye/dotfiles", dotfiles_branch = "feature/devcontainer-cli.nvim", dotfiles_targetPath = "~/dotfiles", dotfiles_installCommand = "install.sh", shell = "bash", nvim_binary = "nvim", log_level = "debug", console_level = "info", terminal = { direction = "float" }, }) end, }'