infra/.vscode/settings.json

21 lines
484 B
JSON
Raw Permalink Normal View History

2023-01-26 11:31:24 +01:00
{
2024-11-15 10:17:56 +01:00
"editor.defaultFormatter": "ibecker.treefmt-vscode",
"editor.formatOnSave": true,
"nix.enableLanguageServer": true,
"nix.serverPath": "nil",
"nix.serverSettings": {
// settings for 'nil' LSP
"nil": {
"autoArchive": true,
"diagnostics": {
"ignored": ["unused_binding", "unused_with"]
},
"formatting": {
"command": ["treefmt", "--stdin", ".nil.nix"]
2024-11-15 10:17:56 +01:00
}
}
},
"treefmt.command": "treefmt",
"treefmt.config": ""
2023-01-26 11:31:24 +01:00
}