This commit is contained in:
ZaneFerns360 2024-05-07 14:17:48 +05:30
parent 1229ab4a4e
commit cc720f58e0
2 changed files with 25 additions and 9 deletions

View file

@ -1,9 +1,24 @@
return {
{ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
main = 'ibl',
opts = {},
{
"lukas-reineke/indent-blankline.nvim",
event = "BufEnter",
opts = {
scope = { enabled = false },
exclude = {
filetypes = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
},
},
}
main = "ibl",
}}