This commit is contained in:
LunarAkai 2025-03-16 19:45:20 +01:00
commit 3bfebb286d
14 changed files with 235 additions and 34 deletions

View file

@ -0,0 +1,38 @@
{pkgs, ...}: {
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-marketplace; [
golang.go
redhat.java
redhat.ansible
redhat.vscode-yaml
rust-lang.rust-analyzer
ritwickdey.liveserver
ecmel.vscode-html-css
mhutchie.git-graph
pixl-garden.bongocat
# theme
catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons
];
profiles.default.userSettings = {
# pls stop adding generative "AI" to everything :c
"chat.agent.enabled" = false;
"chat.commandCenter.enabled" = false;
"editor.semanticHighlighting.enabled" = true;
"terminal.integrated.minimumContrastRatio" = 1;
"window.titleBarStyle" = "custom";
"workbench.colorTheme" = "Catppuccin Macchiato";
"catppuccin.accentColor" = "mauve";
"catppuccin.customUIColors"."mauve"."statusBar.foreground" = "accent";
"workbench.iconTheme" = "catppuccin-macchiato";
"[nix]"."editor.tabSize" = 2;
};
};
}