summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--lua/nvim-treesitter/parsers.lua7
2 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 20e760d7..28acc1fe 100644
--- a/README.md
+++ b/README.md
@@ -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 = {