mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
fix(vscode): disable mcp
This commit is contained in:
parent
b5704f4e10
commit
a33c6008d1
1 changed files with 10 additions and 9 deletions
|
|
@ -84,7 +84,6 @@ in {
|
||||||
"remote.SSH.remotePlatform" = lib.mapAttrs (_name: _value: "linux") config.fireproof.home-manager.programs.ssh.matchBlocks;
|
"remote.SSH.remotePlatform" = lib.mapAttrs (_name: _value: "linux") config.fireproof.home-manager.programs.ssh.matchBlocks;
|
||||||
|
|
||||||
# AI
|
# AI
|
||||||
"github.copilot.editor.enableAutoCompletions" = true;
|
|
||||||
"github.copilot.enable" = {
|
"github.copilot.enable" = {
|
||||||
"*" = true;
|
"*" = true;
|
||||||
"plaintext" = true;
|
"plaintext" = true;
|
||||||
|
|
@ -95,6 +94,7 @@ in {
|
||||||
"github.copilot.chat.agent.thinkingTool" = true;
|
"github.copilot.chat.agent.thinkingTool" = true;
|
||||||
"github.copilot.chat.codesearch.enabled" = true;
|
"github.copilot.chat.codesearch.enabled" = true;
|
||||||
"github.copilot.nextEditSuggestions.enabled" = true;
|
"github.copilot.nextEditSuggestions.enabled" = true;
|
||||||
|
"githubPullRequests.codingAgent.uiIntegration" = true;
|
||||||
|
|
||||||
# Theme
|
# Theme
|
||||||
"workbench.colorTheme" = "Darcula Theme from IntelliJ";
|
"workbench.colorTheme" = "Darcula Theme from IntelliJ";
|
||||||
|
|
@ -113,14 +113,15 @@ in {
|
||||||
}
|
}
|
||||||
(mkFormatter "esbenp.prettier-vscode" ["json" "jsonc" "markdown" "css" "scss" "typescript" "typescriptreact" "html" "yaml"])
|
(mkFormatter "esbenp.prettier-vscode" ["json" "jsonc" "markdown" "css" "scss" "typescript" "typescriptreact" "html" "yaml"])
|
||||||
(mkFormatter "charliermarsh.ruff" ["python"])
|
(mkFormatter "charliermarsh.ruff" ["python"])
|
||||||
(mkMcpStdio {
|
# TODO: Enable when switching to 25.11
|
||||||
name = "linear";
|
# (mkMcpStdio {
|
||||||
command = ["npx" "mcp-remote" "https://mcp.linear.app/sse"];
|
# name = "linear";
|
||||||
})
|
# command = ["npx" "mcp-remote" "https://mcp.linear.app/sse"];
|
||||||
(mkMcpStdio {
|
# })
|
||||||
name = "sentry";
|
# (mkMcpStdio {
|
||||||
command = ["npx" "mcp-remote" "https://mcp.sentry.dev/sse"];
|
# name = "sentry";
|
||||||
})
|
# command = ["npx" "mcp-remote" "https://mcp.sentry.dev/sse"];
|
||||||
|
# })
|
||||||
];
|
];
|
||||||
extensions = with vscodePkgs; [
|
extensions = with vscodePkgs; [
|
||||||
# Remote
|
# Remote
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue