fix: disable tree-sitter indenting for HTML files
This commit is contained in:
parent
4a1e2eacc8
commit
11205d1163
2
init.lua
2
init.lua
|
@ -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`
|
||||
|
|
Loading…
Reference in New Issue