diff options
| author | Emmanuel Briot <briot.emmanuel@gmail.com> | 2022-12-14 15:59:24 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-22 14:46:53 +0100 |
| commit | 23906e8838da6793effc46aaf52f82607d56c6d6 (patch) | |
| tree | 6641a5088ea5ad0c9632826abdd72762879d456a /lua | |
| parent | injections(go): inject regex into some regexp functions (diff) | |
| download | nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.tar nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.tar.gz nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.tar.bz2 nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.tar.lz nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.tar.xz nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.tar.zst nvim-treesitter-23906e8838da6793effc46aaf52f82607d56c6d6.zip | |
feat: add Ada
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index d0ef4a97a..04a4cea66 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -60,6 +60,16 @@ local list = setmetatable({}, { end, }) +list.ada = { + install_info = { + url = "https://github.com/briot/tree-sitter-ada", + branch = "master", + files = { "src/parser.c" }, + }, + filetype = "ada", + maintainers = { "@briot" }, +} + list.agda = { install_info = { url = "https://github.com/AusCyberman/tree-sitter-agda", |
