fix: disable tree-sitter indenting for HTML files

This commit is contained in:
Carlos Hurtado 2024-05-01 12:40:43 -06:00
parent 4a1e2eacc8
commit 11205d1163
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ require('lazy').setup({
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
additional_vim_regex_highlighting = { 'ruby' },
},
indent = { enable = true, disable = { 'ruby' } },
indent = { enable = true, disable = { 'ruby', 'html' } },
},
config = function(_, opts)
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`