From 4b4c7dddee5f53e8ae671f9d68ef2e32c59b98e1 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 2 May 2025 09:39:57 -0400 Subject: [PATCH] Disable treesitter indentation in YAML Fixes #1505 Signed-off-by: David Thompson --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 776c6873..c81d9933 100644 --- a/init.lua +++ b/init.lua @@ -946,7 +946,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', '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: