22 lines
423 B
Lua
22 lines
423 B
Lua
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 = {
|
|
exclude = {
|
|
filetypes = {
|
|
'help',
|
|
'dashboard',
|
|
'neo-tree',
|
|
'Trouble',
|
|
'lazy',
|
|
'mason',
|
|
'notify',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|