From 11205d11639f5e4ba939d51b023c469dc189a363 Mon Sep 17 00:00:00 2001 From: Carlos Hurtado <52082645+carlosahs@users.noreply.github.com> Date: Wed, 1 May 2024 12:40:43 -0600 Subject: [PATCH] fix: disable tree-sitter indenting for HTML files --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 6dcb297b..780842a9 100644 --- a/init.lua +++ b/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`