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:
Thomas Vigouroux 2020-10-22 10:27:44 +02:00
parent 72f5d72413
commit 801416a8bc

View file

@ -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
},