mark .config/git/config as properties file

Git suppots the XDG base directory standard for its global configuration file.
This defaults to ~/.config/git/config. Now VSCode also highlights this file
properly as long as it’s in the default location.
This commit is contained in:
Remco Haszing 2019-06-03 20:27:35 +02:00
parent a03caec78b
commit dc20cfcc4f
No known key found for this signature in database
GPG Key ID: 40D9F5FE9155FD3C

View File

@ -19,7 +19,7 @@
"id": "properties",
"extensions": [ ".properties", ".cfg", ".conf", ".desktop", ".directory" ],
"filenames": [ ".gitattributes", ".gitconfig", "gitconfig", ".editorconfig" ],
"filenamePatterns": [ "**/.git/config" ],
"filenamePatterns": [ "**/.config/git/config", "**/.git/config" ],
"aliases": [ "Properties", "properties" ],
"configuration": "./properties.language-configuration.json"
}],