From 463fda21c956f27faf63541c6bc175bcdd9356db Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Thu, 4 Jul 2024 11:24:04 +0200 Subject: [PATCH] hide dotfiles from file browser --- .vscode/settings.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 45c0476..66ad98e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,13 @@ { "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${profileName}${separator}${appName}", "workbench.editor.labelFormat": "medium", + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + "**/Thumbs.db": true + }, + "hide-files.files": [], } \ No newline at end of file