cursor settings

This commit is contained in:
2025-06-24 19:49:08 +02:00
parent fd4fa0add6
commit 2fcb964b16
2 changed files with 11 additions and 11 deletions

10
.vscode/settings.json vendored
View File

@ -1,4 +1,7 @@
{ {
"[nix]": {
"editor.defaultFormatter": "jnoortheen.nix-ide"
},
"nix.enableLanguageServer": true, "nix.enableLanguageServer": true,
"nix.serverPath": "nil", "nix.serverPath": "nil",
"nix.formatterPath": "alejandra", "nix.formatterPath": "alejandra",
@ -6,10 +9,11 @@
"nil": { "nil": {
"formatting": { "formatting": {
"command": ["alejandra"] "command": ["alejandra"]
},
"flake": {
"autoArchive": true,
"autoEvalInputs": true
} }
} }
},
"[nix]": {
"editor.defaultFormatter": "jnoortheen.nix-ide"
} }
} }

View File

@ -45,21 +45,17 @@
"editor.fontFamily" = "'Intel One Mono', 'Droid Sans Mono', 'monospace', monospace"; "editor.fontFamily" = "'Intel One Mono', 'Droid Sans Mono', 'monospace', monospace";
"editor.tabSize" = 2; "editor.tabSize" = 2;
"editor.wordWrap" = "on"; "editor.wordWrap" = "on";
"workbench.colorTheme" = "Gruvbox Dark Medium";
"workbench.iconTheme" = "vscode-icons";
"editor.defaultFormatter" = "esbenp.prettier-vscode";
"editor.fontLigatures" = "'ss01'"; "editor.fontLigatures" = "'ss01'";
"editor.formatOnSave" = true; "editor.formatOnSave" = true;
"editor.minimap.enabled" = true;
"editor.defaultFormatter" = "esbenp.prettier-vscode";
"prettier.printWidth" = 120; "prettier.printWidth" = 120;
"prettier.proseWrap" = "always"; "prettier.proseWrap" = "always";
"workbench.colorTheme" = "Gruvbox Dark Medium";
"workbench.iconTheme" = "vscode-icons";
"vsicons.dontShowNewVersionMessage" = true; "vsicons.dontShowNewVersionMessage" = true;
"editor.minimap.enabled" = true;
"cursor.cpp.enablePartialAccepts" = true; "cursor.cpp.enablePartialAccepts" = true;
"cursor.diffs.useCharacterLevelDiffs" = true; "cursor.diffs.useCharacterLevelDiffs" = true;
"nix.enableLanguageServer" = true;
"[nix]" = {
"editor.defaultFormatter" = "jnoortheen.nix-ide";
};
}; };
}; };
} }