Compare commits

...

3 Commits

Author SHA1 Message Date
Andreas Schaafsma
5f97af3f96 fixed capitalization 2024-07-04 11:25:14 +02:00
Andreas Schaafsma
109f0178c7 hide dotfiles from filebrowser 2024-07-04 11:24:17 +02:00
Andreas Schaafsma
463fda21c9 hide dotfiles from file browser 2024-07-04 11:24:04 +02:00
2 changed files with 11 additions and 0 deletions

11
.vscode/settings.json vendored
View File

@ -1,4 +1,15 @@
{
"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,
".**": true,
"node_modules": true,
},
"hide-files.files": [],
}