This commit is contained in:
LunarAkai 2025-03-16 20:44:16 +01:00
commit 55ab904b48
3 changed files with 17 additions and 8 deletions

View file

@ -28,11 +28,24 @@
"window.titleBarStyle" = "custom"; "window.titleBarStyle" = "custom";
"workbench.colorTheme" = "Catppuccin Macchiato"; "workbench.colorTheme" = "Catppuccin Macchiato";
"catppuccin.accentColor" = "mauve"; "catppuccin" = {
"catppuccin.customUIColors"."mauve"."statusBar.foreground" = "accent"; "accentColor" = "mauve";
"customUIColors" = {
"mauve"."statusBar.foreground" = "accent";
};
};
"workbench.iconTheme" = "catppuccin-macchiato"; "workbench.iconTheme" = "catppuccin-macchiato";
"[nix]"."editor.tabSize" = 2; "[rust]" = {
"editor.defaultFormatter" = "rust-lang.rustanalyzer";
"editor.formatOnSave" = true;
};
"[nix]" = {
"editor.tabSize" = 2;
};
"redhat.telemetry.enabled" = false;
"BongoCat.toggleStatusBar" = true;
"workbench.productIconTheme" = "bongocat";
}; };
}; };
} }

View file

@ -23,8 +23,4 @@ in {
) )
inputs; inputs;
}; };
nixpkgs.overlays = [
nix-vscode-extensions.overlays.default
];
} }