nixide/.vscode/settings.json
Robert Hensing be8aa55a38 dev: Add indentation rules to .vscode
(cherry picked from commit 6849a8836c1120b4a11cd2511126271b1e815cfe)
2025-09-30 19:02:44 +02:00

16 lines
No EOL
310 B
JSON

{
// Take from PATH, direnv
"rust-analyzer.server.path": "rust-analyzer",
"[nix]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false
},
"[rust]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false
},
}