From 10c95c8c85596d4a5289a51f68f9f077eb26d586 Mon Sep 17 00:00:00 2001 From: Josh <56745535+Subjective@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:49:58 -0700 Subject: [PATCH] fix(mini-indentscope): ignore more filetypes (#538) --- lua/astrocommunity/indent/mini-indentscope/init.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/astrocommunity/indent/mini-indentscope/init.lua b/lua/astrocommunity/indent/mini-indentscope/init.lua index 1674a37e4..9da71df55 100644 --- a/lua/astrocommunity/indent/mini-indentscope/init.lua +++ b/lua/astrocommunity/indent/mini-indentscope/init.lua @@ -6,20 +6,22 @@ return { init = function() vim.api.nvim_create_autocmd("FileType", { pattern = { + "Trouble", "aerial", "alpha", + "checkhealth", "dashboard", "fzf", "help", - "neo-tree", "lazy", "lspinfo", + "man", "mason", + "neo-tree", "notify", "null-ls-info", "starter", "toggleterm", - "Trouble", "undotree", }, callback = function() vim.b.miniindentscope_disable = true end,