diff options
| author | Matthew Taylor <wrapperup4@gmail.com> | 2024-03-18 05:00:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-18 10:00:22 +0100 |
| commit | 2014f8285e306f4c8a896c7d3af53fdd599e5a4f (patch) | |
| tree | f33e0387d19edebfbe90a510b4e24e7cad9a8299 /lua | |
| parent | bot(lockfile): update arduino, cmake, dtd, http, mlir, ocaml, ocaml_interface... (diff) | |
| download | nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.tar nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.tar.gz nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.tar.bz2 nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.tar.lz nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.tar.xz nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.tar.zst nvim-treesitter-2014f8285e306f4c8a896c7d3af53fdd599e5a4f.zip | |
feat: add vento support (#6261)
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 1d587cdfa..c7010e10c 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2183,6 +2183,15 @@ list.vala = { maintainers = { "@Prince781" }, } +list.vento = { + install_info = { + url = "https://github.com/ventojs/tree-sitter-vento", + files = { "src/parser.c", "src/scanner.c" }, + }, + filetype = "vto", + maintainers = { "@wrapperup", "@oscarotero" }, +} + list.verilog = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-verilog", |
