Update VSCode settings: add file nesting patterns and exclude specific directories
This commit is contained in:
parent
75d8afdd1e
commit
895f24d576
1 changed files with 10 additions and 1 deletions
11
.vscode/settings.json
vendored
11
.vscode/settings.json
vendored
|
@ -1,3 +1,12 @@
|
||||||
{
|
{
|
||||||
"typescript.tsdk": "node_modules/typescript/lib"
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
|
"explorer.fileNesting.patterns": {
|
||||||
|
"flake.nix": "*.nix, flake.lock, .envrc",
|
||||||
|
"package.json": " pnpm-lock.yaml, tsconfig.json, .gitignore"
|
||||||
|
},
|
||||||
|
"files.exclude": {
|
||||||
|
".direnv": true,
|
||||||
|
"node_modules": true,
|
||||||
|
"@girs": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue