From e33600115ad04b809a5980b6ada17449416059cf Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Sat, 22 Mar 2025 20:30:41 -0400 Subject: [PATCH] Update VSCode settings: add file nesting patterns and exclude specific directories --- ags/.vscode/settings.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ags/.vscode/settings.json b/ags/.vscode/settings.json index 72446f4..8c8cc3a 100644 --- a/ags/.vscode/settings.json +++ b/ags/.vscode/settings.json @@ -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 + } }