From 903849dabeb433f44687bd7e2c63a2e90155e5cd Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Tue, 8 Aug 2023 13:31:11 -0400 Subject: [PATCH] Added excludes to VSCode watcher --- home/dot_config/Code/User/settings.json.tmpl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/home/dot_config/Code/User/settings.json.tmpl b/home/dot_config/Code/User/settings.json.tmpl index 02b2a7a8..ad3c73e3 100644 --- a/home/dot_config/Code/User/settings.json.tmpl +++ b/home/dot_config/Code/User/settings.json.tmpl @@ -61,7 +61,14 @@ "**/.trunk/*logs/": true, "**/.trunk/*out/": true, "**/.trunk/*plugins/": true, - "**/.trunk/*notifications/": true + "**/.trunk/*notifications/": true, + "**/.git/objects/**": true, + "**/.git/subtree-cache/**": true, + "**/node_modules/*/**": true, + "**/.hg/store/**": true, + "**/.cache/**": true, + "**/.venv/**": true, + "**/venv/**": true }, "git.autofetch": true, "git.enableSmartCommit": true,