diff options
| author | 6cdh <cd6cdh@gmail.com> | 2022-06-04 11:11:34 +0800 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-08-03 00:25:14 +0200 |
| commit | d642de92f700c74613977fe6697fb42b299177c9 (patch) | |
| tree | 3053a143476b23622fcfcc7ea86154d6a77f46dc /lua/nvim-treesitter | |
| parent | 3d476b3edb34a3396f7e208e6bde456c941e1b5f (diff) | |
Add racket support
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 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", |
