diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -283,6 +283,7 @@ List of currently supported languages: - [ ] markdown - [x] regex (maintained by @theHamsta) - [ ] jsdoc +- [ ] dart ## User Query Extensions diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 42c41870..9ee71bc8 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -207,6 +207,13 @@ list.nix = { } } +list.dart = { + install_info = { + url = "https://github.com/UserNobody14/tree-sitter-dart", + files = { "src/parser.c", "src/scanner.c" }, + } +} + -- Parsers for injections list.regex = { install_info = { |
