mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 12:06:55 -04:00
parent
567c644e53
commit
387a8f38bd
4 changed files with 37 additions and 22 deletions
|
|
@ -25,8 +25,7 @@ local builtin_modules = {
|
|||
enable = false,
|
||||
custom_captures = {},
|
||||
is_supported = function(lang)
|
||||
-- FIXME(vigoux): markdown highlighting breaks everything for now
|
||||
return lang ~= "markdown" and queries.has_highlights(lang)
|
||||
return queries.has_highlights(lang)
|
||||
end,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue