Compare commits

...

2 commits

Author SHA1 Message Date
Trolli Schmittlauch e1f16f2c71 vscodium: disable automatic Nix formatting 2023-10-10 09:48:20 +02:00
Trolli Schmittlauch 13a6dc0f66 vscodium: set default themes
it always tried to set the themes by itself at runtime
and then complained due to readonly settings
2023-10-09 10:49:56 +02:00

View file

@ -345,9 +345,16 @@ in
userSettings = {
"editor.fontLigatures" = true;
"window.autoDetectColorScheme" = true;
"workbench.preferredDarkColorScheme" = "Default Dark Modern";
"workbench.preferredLightColorScheme" = "Default Light Modern";
"[nix]" = {
"editor.insertSpaces" = true;
"editor.tabSize" = 2;
"editor.defaultFormatter" = "kamadorueda.alejandra";
# for now, disable automatic formatting to prevent disruption of existing code bases
"editor.formatOnPaste" = false;
"editor.formatOnSave" = false;
"editor.formatOnType" = false;
};
"editor.fontSize" = 13;
"editor.fontWeight" = "normal";