From 5c3ec8b073500cd24d931078c728ef666b8ec637 Mon Sep 17 00:00:00 2001 From: Nickolaj Jepsen Date: Thu, 23 Oct 2025 08:58:56 +0200 Subject: [PATCH] chore: update vscode config --- legacy_modules/apps/vscode.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/legacy_modules/apps/vscode.nix b/legacy_modules/apps/vscode.nix index c3a33a7..dd3dd32 100644 --- a/legacy_modules/apps/vscode.nix +++ b/legacy_modules/apps/vscode.nix @@ -95,6 +95,7 @@ in { "github.copilot.chat.codesearch.enabled" = true; "github.copilot.nextEditSuggestions.enabled" = true; "githubPullRequests.codingAgent.uiIntegration" = true; + "githubPullRequests.pullBranch" = "always"; # Theme "workbench.colorTheme" = "Darcula Theme from IntelliJ"; @@ -110,6 +111,9 @@ in { "nix.serverSettings" = { nil.formatting.command = ["nix" "fmt" "--" "--"]; }; + + # Other extensions + "biome.suggestInstallingGlobally" = false; } (mkFormatter "esbenp.prettier-vscode" ["json" "jsonc" "markdown" "css" "scss" "typescript" "typescriptreact" "html" "yaml"]) (mkFormatter "charliermarsh.ruff" ["python"])