diff options
Diffstat (limited to 'lua')
| -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 d2cbd45d..c2b78585 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -43,6 +43,7 @@ local list = setmetatable({}, { filetype_to_parsername[parserconfig.filetype or parsername] = parsername end, }) + list.qmljs = { install_info = { url = "https://github.com/yuja/tree-sitter-qmljs", @@ -52,6 +53,16 @@ list.qmljs = { filetype = "qmljs", maintainers = { "@yuja" }, } + +list.racket = { + install_info = { + url = "https://github.com/6cdh/tree-sitter-racket", + branch = "main", + files = { "src/parser.c", "src/scanner.cc" }, + }, + maintainers = { "@6cdh" }, +} + list.scheme = { install_info = { url = "https://github.com/6cdh/tree-sitter-scheme", |
