From ebdfd6f45ad0ac59078c9f8811a6d578c5bb5981 Mon Sep 17 00:00:00 2001 From: Petr Sykora Date: Sun, 6 Jul 2025 13:59:26 +0200 Subject: [PATCH] feat: disable treesitter indent for yaml --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 0c3fa4df..6d576db2 100644 --- a/init.lua +++ b/init.lua @@ -954,7 +954,7 @@ require('lazy').setup({ additional_vim_regex_highlighting = { 'ruby' }, disable = { "html" }, }, - indent = { enable = true, disable = { 'ruby', "html" } }, + indent = { enable = true, disable = { 'ruby', "html", "yaml" } }, }, -- 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: