vscodium: disable automatic Nix formatting

This commit is contained in:
Trolli Schmittlauch 2023-10-10 09:48:20 +02:00
parent 13a6dc0f66
commit e1f16f2c71

View file

@ -350,6 +350,11 @@ in
"[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";