diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-08-15 23:36:56 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-08-16 23:16:44 -0700 |
| commit | b245c44ce1ae741955cf782f8f88cb36d0de94bc (patch) | |
| tree | c410355225094ac93f98d2756fff42bf2d200c47 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.tar nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.tar.gz nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.tar.bz2 nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.tar.lz nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.tar.xz nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.tar.zst nvim-treesitter-b245c44ce1ae741955cf782f8f88cb36d0de94bc.zip | |
parsers: add tree-sitter-gitignore
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 18273e42a..7aab74e90 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1156,6 +1156,16 @@ list.tiger = { maintainers = { "@ambroisie" }, } +list.gitignore = { + install_info = { + url = "https://github.com/shunsambongi/tree-sitter-gitignore", + files = { "src/parser.c" }, + branch = "main", + requires_generate_from_grammar = true, + }, + maintainers = { "@theHamsta" }, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
