fix: disable treesitter for html because it is crashing the neovim

This commit is contained in:
Petr Sykora 2025-05-25 10:59:29 +02:00
parent 406abfa342
commit 59e6f7246e
1 changed files with 2 additions and 1 deletions

View File

@ -952,8 +952,9 @@ require('lazy').setup({
-- If you are experiencing weird indenting issues, add the language to
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
additional_vim_regex_highlighting = { 'ruby' },
disable = { "html" },
},
indent = { enable = true, disable = { 'ruby' } },
indent = { enable = true, disable = { 'ruby', "html" } },
},
-- There are additional nvim-treesitter modules that you can use to interact
-- with nvim-treesitter. You should go explore a few and see what interests you: