diff options
| author | Brian Albert Monroe <brianalbertmonroe@gmail.com> | 2022-04-19 06:31:31 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-06-19 21:45:19 +0200 |
| commit | 23ca66d8ca75f4525f539f98553a5eb6c71ed6fa (patch) | |
| tree | 30ae7f6437caa76002b0e1ed1dd971033c553e6f /lua | |
| parent | Add rnoweb queries (diff) | |
| download | nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.tar nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.tar.gz nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.tar.bz2 nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.tar.lz nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.tar.xz nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.tar.zst nvim-treesitter-23ca66d8ca75f4525f539f98553a5eb6c71ed6fa.zip | |
Add rnoweb to the parsers.lua file
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index f1cdea471..2cf2f4364 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -812,6 +812,15 @@ list.beancount = { maintainers = { "@polarmutex" }, } +list.rnoweb = { + install_info = { + url = "https://github.com/bamonroe/tree-sitter-rnoweb", + files = { "src/parser.c", "src/scanner.c" }, + }, + filetype = "rnoweb", + maintainers = { "@bamonroe" }, +} + list.latex = { install_info = { url = "https://github.com/latex-lsp/tree-sitter-latex", |
