-
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.
Open NVIM immediately and eliminate extra script
- Loading branch information
Showing
5 changed files
with
57 additions
and
77 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -35,17 +35,22 @@ local default_config = { | |
dotfiles_repository = "[email protected]:erichlf/dotfiles", | ||
-- branch to checkout for repositories (this is a feature not supported by | ||
-- devcontainers in general, but we do) | ||
dotfiles_repository = "devcontainer", | ||
dotfiles_branch = "main", | ||
-- directory for the setup environment | ||
dotfiles_targetPath = "~/dotfiles", | ||
-- 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 particular binary to use for connecting to in the devcontainer | ||
-- Most likely this should remain nvim | ||
nvim_binary = "nvim", | ||
-- 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 | ||
|
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