We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89d61ff commit dfeb14fCopy full SHA for dfeb14f
script/config/template.lua
@@ -395,7 +395,15 @@ local template = {
395
396
-- VSCode
397
['files.associations'] = Type.Hash(Type.String, Type.String),
398
- ['files.exclude'] = Type.Hash(Type.String, Type.Boolean),
+ -- copy from VSCode default
399
+ ['files.exclude'] = Type.Hash(Type.String, Type.Boolean) << {
400
+ ["**/.DS_Store"] = true,
401
+ ["**/.git"] = true,
402
+ ["**/.hg"] = true,
403
+ ["**/.svn"] = true,
404
+ ["**/CVS"] = true,
405
+ ["**/Thumbs.db"] = true
406
+ },
407
['editor.semanticHighlighting.enabled'] = Type.Or(Type.Boolean, Type.String),
408
['editor.acceptSuggestionOnEnter'] = Type.String >> 'on',
409
}
0 commit comments