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 | |
| parent | other folds added (diff) | |
| download | nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.tar nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.tar.gz nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.tar.bz2 nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.tar.lz nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.tar.xz nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.tar.zst nvim-treesitter-d642de92f700c74613977fe6697fb42b299177c9.zip | |
Add racket support
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 d2cbd45dc..c2b78585c 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", |
