-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from erichlf/AddShell
Add shell to DevcontainerExec
- Loading branch information
Showing
7 changed files
with
84 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,18 +8,24 @@ local default_config = { | |
-- Folder where the nvim-devcontainer-cli is installed | ||
nvim_plugin_folder = file_path:gsub("init.lua", "") .. "../../../", | ||
-- Remove existing container each time DevcontainerUp is executed | ||
-- If set to True [default_value] it can take extra time as you force to start from scratch | ||
-- If set to True [default_value] it can take extra time as you force to | ||
-- start from scratch | ||
remove_existing_container = true, | ||
-- dependencies that have to be installed in the devcontainer (remoteUser = root) | ||
-- dotfiles to be downloaded | ||
dotfiles_repository = "[email protected]:erichlf/dotfiles", | ||
-- branch to checkout for repositories (this is a feature not supported by devcontainers in general, but we do) | ||
-- branch to checkout for repositories (this is a feature not supported by | ||
-- devcontainers in general, but we do) | ||
dotfiles_repository = "devcontainer", | ||
-- directory for the setup environment | ||
dotfiles_targetPath = "~/dotfiles", | ||
-- command that's executed for installed the dependencies from the setup_environment_repo | ||
-- command that's executed for installed the dependencies from the | ||
-- setup_environment_repo | ||
dotfiles_installCommand = "install.sh", | ||
-- The number of columns to wrap text at | ||
terminal_columns = 80, | ||
-- 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', | ||
} | ||
|
||
local options | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.