diff --git a/config/auto_cmds.nix b/config/auto_cmds.nix index a78f0d1..b96bf56 100644 --- a/config/auto_cmds.nix +++ b/config/auto_cmds.nix @@ -2,6 +2,7 @@ autoGroups = { highlight_yank = {}; vim_enter = {}; + indentscope = {}; }; 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 + ''; + }; + } ]; }