flake update, vscode enable agent features, kitty layout config

This commit is contained in:
Salar Rahmanian 2025-04-05 17:52:58 -07:00
parent e52b88e25a
commit 42d60d9f19
4 changed files with 25 additions and 17 deletions

View file

@ -5,7 +5,7 @@ let
in
{
home.packages = with pkgs; [
aider-chat.withPlaywright
aider-chat-full
];
home.file.".aider.conf.yml".text = aiderConfig;
}

View file

@ -21,7 +21,7 @@ in
settings = {
active_tab_background = "#FF0";
copy_on_select = true;
enabled_layouts = "Tall,*";
enabled_layouts = "Tall,Stack,Horizontal,*";
kitty_mod = "cmd+option";
macos_quit_when_last_window_closed = true;
scrollback_lines = 100000;

View file

@ -53,6 +53,14 @@ let
"git.confirmSync" = true;
"git.rebaseWhenSync" = true;
"github.gitProtocol" = "ssh";
"github.copilot.chat.codesearch.enabled" = true;
"github.copilot.nextEditSuggestions.enabled" = true;
"github.copilot.chat.editor.temporalContext.enabled" = true;
"github.copilot.chat.generateTests.codeLens" = true;
"github.copilot.chat.languageContext.typescript.enabled" = true;
"github.copilot.chat.newWorkspaceCreation.enabled" = true;
"github.copilot.chat.search.semanticTextResults" = true;
"githubPullRequests.experimental.chat" = true;
"githubPullRequests.notifications" = "pullRequests";
"githubPullRequests.pullBranch" = "never";
"markdown.extension.preview.autoShowPreviewToSide" = true;