diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-12-13 21:29:07 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-12-14 15:00:14 +0100 |
| commit | 387a8f38bd1ee25321b59bb08d23641f113f85da (patch) | |
| tree | 8bb28c4497d413201b6c924fb11b57f825582609 /lua/nvim-treesitter/parsers.lua | |
| parent | 567c644e5372d661ed36937ce7db6dc7155d97d1 (diff) | |
parsers: Add MDeiml/tree-sitter-markdown as markdown parser
Fixes #872
Diffstat (limited to 'lua/nvim-treesitter/parsers.lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index a757fdd1..57280e82 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -433,13 +433,14 @@ list.hcl = { used_by = { "terraform" }, } --- FIXME(vigoux): markdown is broken for now --- list.markdown = { --- install_info = { --- url = "https://github.com/ikatyang/tree-sitter-markdown", --- files = { "src/parser.c", "src/scanner.cc" }, --- } --- } +list.markdown = { + install_info = { + url = "https://github.com/MDeiml/tree-sitter-markdown", + files = { "src/parser.c", "src/scanner.cc" }, + branch = "main", + }, + experimental = true, +} list.tlaplus = { install_info = { |
