diff options
| author | Cezary Drożak <czarek@drozak.net> | 2021-10-01 11:33:33 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-10-07 22:43:09 +0200 |
| commit | c2c454c29a92e2d0db955fc1d6841566c28e3ecd (patch) | |
| tree | 86e49ee3b3d4f4bb82450a947dc62120e261fed7 /lua/nvim-treesitter | |
| parent | e87ed0fdaafe3291a2e35cb708d31d595e3b2216 (diff) | |
parsers: add D parser
Diffstat (limited to 'lua/nvim-treesitter')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index c54ebfa5..89b12d39 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -85,6 +85,17 @@ list.cuda = { maintainers = { "@theHamsta" }, } +list.d = { + install_info = { + url = "https://github.com/CyberShadow/tree-sitter-d", + files = { "src/parser.c", "src/scanner.cc" }, + requires_generate_from_grammar = true, + }, + maintainers = { "@nawordar" }, + -- Generating grammar takes ~60s + experimental = true, +} + list.glsl = { install_info = { url = "https://github.com/theHamsta/tree-sitter-glsl", |
