Add syntax highlighting

This commit is contained in:
2025-10-15 12:10:56 +02:00
parent 246d62c029
commit 2ce6f733d7
5 changed files with 553 additions and 1 deletions
@@ -0,0 +1,30 @@
{
"comments": {
"blockComment": ["<!--", "-->"]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}" },
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "\"", "close": "\"" },
{ "open": "'", "close": "'" }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"folding": {
"markers": {
"start": "^\\s*<!--\\s*#region\\b",
"end": "^\\s*<!--\\s*#endregion\\b"
}
}
}