aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 004c566d3..1e3fc88d7 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -43,7 +43,15 @@ local list = setmetatable({}, {
filetype_to_parsername[parserconfig.filetype or parsername] = parsername
end,
})
-
+list.qmljs = {
+ install_info = {
+ url = "https://github.com/yuja/tree-sitter-qmljs",
+ branch = "master",
+ files = { "src/parser.c", "src/scanner.c" },
+ },
+ filetype = "qmljs",
+ maintainers = { "@yuja" },
+}
list.scheme = {
install_info = {
url = "https://github.com/6cdh/tree-sitter-scheme",