add indentscope autoCmd

This commit is contained in:
Roel de Cort 2024-05-16 01:20:04 +02:00
parent bfc5703e1d
commit ccfcaaa214

View file

@ -2,6 +2,7 @@
autoGroups = { autoGroups = {
highlight_yank = {}; highlight_yank = {};
vim_enter = {}; vim_enter = {};
indentscope = {};
}; };
autoCmd = [ autoCmd = [
@ -29,5 +30,25 @@
''; '';
}; };
} }
{
group = "indentscope";
event = ["FileType"];
pattern = [
"help"
"Startup"
"startup"
"neo-tree"
"Trouble"
"trouble"
"notify"
];
callback = {
__raw = ''
function()
vim.b.miniindentscope_disable = true
end
'';
};
}
]; ];
} }