diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/language_tex.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/language_tex.lua b/plugins/language_tex.lua new file mode 100644 index 0000000..eced489 --- /dev/null +++ b/plugins/language_tex.lua @@ -0,0 +1,16 @@ +local syntax = require "core.syntax" + +syntax.add { + files = { "%.tex$" }, + comment = "%%", + patterns = { + { pattern = {"%%", "\n"}, type = "comment" }, + { pattern = "&", type = "operator" }, + { pattern = "\\\\", type = "operator" }, + { pattern = {"%$", "%$"}, type = "operator" }, + { pattern = {"\\%[", "\\]"}, type = "operator" }, + { pattern = {"{", "}"}, type = "keyword" }, + { pattern = "\\%w*", type = "keyword2" }, + }, + symbols = {} +} |