This commit is contained in:
2026-03-09 08:54:30 -04:00
commit 1f75b6f396
18 changed files with 866 additions and 0 deletions

7
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"recommendations": [
"ziglang.vscode-zig",
"jnoortheen.nix-ide",
"esbenp.prettier-vscode"
]
}

23
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,23 @@
{
"editor.formatOnSave": true,
"files.associations": {
"renovate.json": "jsonc",
".envrc.project": "dotenv",
".envrc": "dotenv"
},
// nix
"nix.enableLanguageServer": true,
"nix.serverPath": "nixd",
"[nix]": {
"editor.defaultFormatter": "jnoortheen.nix-ide"
},
// json
"json.schemaDownload.trustedDomains": {
"https://docs.renovatebot.com/": true
},
// actions
"editor.defaultFormatter": "esbenp.prettier-vscode"
}