dev: Add indentation rules to .vscode

(cherry picked from commit 6849a8836c1120b4a11cd2511126271b1e815cfe)
This commit is contained in:
Robert Hensing 2024-03-15 18:29:26 +01:00
parent 0d7146cb39
commit be8aa55a38

14
.vscode/settings.json vendored
View file

@ -1,4 +1,16 @@
{
// Take from PATH, direnv
"rust-analyzer.server.path": "rust-analyzer"
"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
},
}