update indent-blankline to exclude various special plugin buffers

This commit is contained in:
Gered 2024-09-01 18:59:10 -04:00
parent ab66569d22
commit 8b1e729b58

View file

@ -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,
},
}