feat: custom languages syntax (WIP)

This commit is contained in:
MihailRis
2025-04-13 00:19:38 +03:00
parent 4360cd408b
commit 5253be6c56
18 changed files with 278 additions and 88 deletions
+12
View File
@@ -0,0 +1,12 @@
language = "Lua"
extensions = ["lua"]
line-comment = "--"
multiline-comment-start = "[==["
multiline-comment-end = "]==]"
multiline-string-start = "[["
multiline-string-end = "]]"
keywords = [
"and", "break", "do", "else", "elseif", "end", "false", "for", "function",
"if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true",
"until", "while"
]