update indent-blankline to exclude various special plugin buffers
This commit is contained in:
parent
ab66569d22
commit
8b1e729b58
|
@ -4,7 +4,20 @@ return {
|
||||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||||
-- See `:help ibl`
|
-- See `:help ibl`
|
||||||
main = 'ibl',
|
main = 'ibl',
|
||||||
opts = {},
|
opts = function()
|
||||||
|
return {
|
||||||
|
exclude = {
|
||||||
|
filetypes = {
|
||||||
|
'help',
|
||||||
|
'dashboard',
|
||||||
|
'neo-tree',
|
||||||
|
'lazy',
|
||||||
|
'mason',
|
||||||
|
'toggleterm',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue