Add srcpub alias to ssh

This commit is contained in:
Greg Hellings
2025-05-19 09:53:35 -05:00
parent 9a7deffe4d
commit 7fde53230c
2 changed files with 11 additions and 6 deletions
+5
View File
@@ -43,6 +43,11 @@
user = "gitlab"; user = "gitlab";
hostname = "git.thehellings.lan"; hostname = "git.thehellings.lan";
}; };
srcpub = {
user = "gitlab";
hostname = "src.thehellings.com";
port = 2222;
};
ivr = { ivr = {
user = "git"; user = "git";
hostname = "gitlab.com"; hostname = "gitlab.com";
+6 -6
View File
@@ -57,6 +57,12 @@ in
"asvetliakov.vscode-neovim" = 1; "asvetliakov.vscode-neovim" = 1;
}; };
"git.openRepositoryInParentFolders" = "always"; "git.openRepositoryInParentFolders" = "always";
"github.copilot.enable" = {
"*" = false;
"plaintext" = false;
"markdown" = false;
"scminput" = false;
};
"search.exclude" = { "search.exclude" = {
"**/.tox" = true; "**/.tox" = true;
}; };
@@ -64,12 +70,6 @@ in
"vscode-neovim.neovimInitVimPaths.darwin" = "~/.config/nvim/init.lua"; "vscode-neovim.neovimInitVimPaths.darwin" = "~/.config/nvim/init.lua";
"vscode-neovim.neovimInitVimPaths.linux" = "~/.config/nvim/init.lua"; "vscode-neovim.neovimInitVimPaths.linux" = "~/.config/nvim/init.lua";
"workbench.settings.applyToAllProfiles" = [ "direnv.path.executable" ]; "workbench.settings.applyToAllProfiles" = [ "direnv.path.executable" ];
"github.copilot.enable" = {
"*" = false;
"plaintext" = false;
"markdown" = false;
"scminput" = false;
};
}; };
}; };
}; };