diff options
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 1bf5ea224..a5df336e5 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -17,6 +17,7 @@ local filetype_to_parsername = { rmd = "markdown", cs = "c_sharp", tape = "vhs", + dosini = "ini", } ---@class InstallInfo @@ -1405,6 +1406,15 @@ list.ebnf = { experimental = true, } +list.ini = { + install_info = { + url = "https://github.com/justinmk/tree-sitter-ini", + files = { "src/parser.c" }, + }, + maintainers = { "@theHamsta" }, + experimental = true, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
