From 895f24d5763556605c74612cb18c1ea04c217386 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 --- .vscode/settings.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 72446f4..8c8cc3a 100644 --- a/.vscode/settings.json +++ b/.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 + } }