mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
fix(markdown): disable highlighting
The markdown scanner errors out far too often to be usable, disabling it by default would avoid many issues until those assertion errors are fixed.
This commit is contained in:
parent
72f5d72413
commit
801416a8bc
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ local builtin_modules = {
|
|||
highlight = {
|
||||
module_path = 'nvim-treesitter.highlight',
|
||||
enable = false,
|
||||
disable = {},
|
||||
disable = {'markdown'}, -- FIXME(vigoux): markdown highlighting breaks everything for now
|
||||
custom_captures = {},
|
||||
is_supported = queries.has_highlights
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue