diff options
| author | Michael Hoffmann <mhoffm@posteo.de> | 2023-07-08 19:44:16 +0200 |
|---|---|---|
| committer | Amaan Qureshi <amaanq12@gmail.com> | 2023-07-18 03:03:11 -0400 |
| commit | b64ea2ec444c27efd8d3bd2377a8b24589954363 (patch) | |
| tree | 913151ad61c701e387da3d673464e45c03c4b71d /lua | |
| parent | fix(menhir): adapt to scanner rewrite (diff) | |
| download | nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.tar nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.tar.gz nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.tar.bz2 nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.tar.lz nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.tar.xz nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.tar.zst nvim-treesitter-b64ea2ec444c27efd8d3bd2377a8b24589954363.zip | |
feat(promql,yaml): add parser and yaml injections
Signed-off-by: Michael Hoffmann <mhoffm@posteo.de>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index d6b3bdb7f..3f1bc98d8 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1187,6 +1187,15 @@ list.prisma = { maintainers = { "@elianiva" }, } +list.promql = { + install_info = { + url = "https://github.com/MichaHoffmann/tree-sitter-promql", + files = { "src/parser.c" }, + experimental = true, + }, + maintainers = { "@MichaHoffmann" }, +} + list.proto = { install_info = { url = "https://github.com/mitchellh/tree-sitter-proto", |
