summaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorEric Crosson2022-01-04 01:17:06 +0000
committerBlaž Hrastnik2022-01-08 15:30:22 +0000
commit1c6bc6d455595aa5b8d7d2aa27d025722f57c351 (patch)
treebd5da26061b26151d4b16995a0f2cab5b79eb5cb /languages.toml
parentc238f20e1d26e8a48997630f0f826d4633597bbf (diff)
feat: add tree-sitter-make
This commit adds syntax highlighting for GNU Make[^1] makefiles via tree-sitter-make[^2]. [^1]: https://www.gnu.org/software/make/ [^2]: https://github.com/alemuller/tree-sitter-make
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml
index c8f9bab4..afee20aa 100644
--- a/languages.toml
+++ b/languages.toml
@@ -391,6 +391,13 @@ language-server = { command = "cmake-language-server" }
injection-regex = "cmake"
[[language]]
+name = "make"
+scope = "source.make"
+file-types = ["Makefile", "makefile", "justfile", ".justfile"]
+roots =[]
+comment-token = "#"
+
+[[language]]
name = "glsl"
scope = "source.glsl"
file-types = ["glsl", "vert", "tesc", "tese", "geom", "frag", "comp" ]