diff options
| author | Arnar Gauti Ingason <arnarg@fastmail.com> | 2022-02-28 14:07:23 +0100 |
|---|---|---|
| committer | Kiyan <yazdani.kiyan@protonmail.com> | 2022-02-28 22:46:47 +0100 |
| commit | 202cbc10ad1ac3619b649beae32c2349aa241577 (patch) | |
| tree | 2a1482b69dc58645d78e5a5fe958e0e71c0bc111 /lua | |
| parent | fix(gleam): update parser and queries (diff) | |
| download | nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.tar nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.tar.gz nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.tar.bz2 nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.tar.lz nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.tar.xz nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.tar.zst nvim-treesitter-202cbc10ad1ac3619b649beae32c2349aa241577.zip | |
parsers: Add todotxt parser
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 8b7ebc04c..3c8cc8daf 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -411,6 +411,17 @@ list.c_sharp = { maintainers = { "@Luxed" }, } +list.todotxt = { + install_info = { + url = "https://github.com/arnarg/tree-sitter-todotxt.git", + files = { "src/parser.c" }, + branch = "main", + }, + filetype = "todotxt", + maintainers = { "@arnarg" }, + experimental = true, +} + list.typescript = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-typescript", |
