diff options
| author | Amaan Qureshi <amaanq12@gmail.com> | 2023-01-23 03:00:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-23 10:00:32 +0200 |
| commit | 6cf93175bf011ca899e494376838ae147870a1eb (patch) | |
| tree | 4a1c697faaabcf4ad2e63f0baad85017fa6083c7 /lua | |
| parent | feat(thrift): refactor queries for better highlights, fixes bugs where certai... (diff) | |
| download | nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.tar nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.tar.gz nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.tar.bz2 nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.tar.lz nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.tar.xz nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.tar.zst nvim-treesitter-6cf93175bf011ca899e494376838ae147870a1eb.zip | |
feat: add capnp (#4203)
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 e4d1da4d9..583466b99 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1195,6 +1195,15 @@ list.astro = { maintainers = { "@virchau13" }, } +list.capnp = { + install_info = { + url = "https://github.com/amaanq/tree-sitter-capnp", + files = { "src/parser.c" }, + }, + maintainers = { "@amaanq" }, + experimental = true, +} + list.wgsl = { install_info = { url = "https://github.com/szebniok/tree-sitter-wgsl", |
