From 8b1e729b587b910241c5514333ccab32917d039b Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 1 Sep 2024 18:59:10 -0400 Subject: [PATCH] update indent-blankline to exclude various special plugin buffers --- lua/plugins/indent-blankline.lua | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lua/plugins/indent-blankline.lua b/lua/plugins/indent-blankline.lua index d52a7b5..9c4dbec 100644 --- a/lua/plugins/indent-blankline.lua +++ b/lua/plugins/indent-blankline.lua @@ -4,7 +4,20 @@ return { -- Enable `lukas-reineke/indent-blankline.nvim` -- See `:help ibl` main = 'ibl', - opts = {}, + opts = function() + return { + exclude = { + filetypes = { + 'help', + 'dashboard', + 'neo-tree', + 'lazy', + 'mason', + 'toggleterm', + }, + }, + } + end, }, }