wip: add vscode
This commit is contained in:
parent
88c4990578
commit
db238bda7a
3 changed files with 29 additions and 0 deletions
27
home/vscode/default.nix
Normal file
27
home/vscode/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
profiles.default = {
|
||||
enableExtensionUpdateCheck = true;
|
||||
enableMcpIntegration = true;
|
||||
enableUpdateCheck = true;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
];
|
||||
userSettings = {
|
||||
"workbench.colorTheme" = "Catppuccin Alt Mocha";
|
||||
"window.menuBarVisibility" = "compact";
|
||||
"workbench.navigationControl.enabled" = false;
|
||||
"window.commandCenter" = false;
|
||||
"chat.commandCenter.enabled" = false;
|
||||
"workbench.layoutControl.enabled" = false;
|
||||
"window.titleBarStyle" = "native";
|
||||
"editor.minimap.enabled" = false;
|
||||
"chat.mcp.gallery.enabled" = true;
|
||||
|
||||
"editor.semanticHighlighting.enabled" = true;
|
||||
"workbench.iconTheme" = "catppuccin-mocha";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue