diff options
| author | qvalentin <valentin.theodor@web.de> | 2024-02-04 11:23:23 +0100 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-03-03 13:09:20 +0100 |
| commit | 9e1f3c336940e77adee81ca340e1bf0635e655f3 (patch) | |
| tree | 3c783bccab8ef3e024d8fb6b5ab7c1536e0853ed /lua | |
| parent | bot(lockfile): update arduino, gpg, sourcepawn, ssh_config, vue, wing (diff) | |
| download | nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.tar nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.tar.gz nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.tar.bz2 nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.tar.lz nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.tar.xz nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.tar.zst nvim-treesitter-9e1f3c336940e77adee81ca340e1bf0635e655f3.zip | |
feat: add gotemplate and helm parser support
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 12c935034..bbd07e17a 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -758,6 +758,14 @@ list.gowork = { maintainers = { "@omertuc" }, } +list.gotmpl = { + install_info = { + url = "https://github.com/ngalaiko/tree-sitter-go-template", + files = { "src/parser.c" }, + }, + maintainers = { "@qvalentin" }, +} + list.gpg = { install_info = { url = "https://github.com/ObserverOfTime/tree-sitter-gpg-config", @@ -838,6 +846,15 @@ list.heex = { maintainers = { "@connorlay" }, } +list.helm = { + install_info = { + url = "https://github.com/ngalaiko/tree-sitter-go-template", + location = "dialects/helm", + files = { "src/parser.c" }, + }, + maintainers = { "@qvalentin" }, +} + list.hjson = { install_info = { url = "https://github.com/winston0410/tree-sitter-hjson", |
