nvim/lua/plugins/indent-blankline.lua
2026-04-13 15:49:15 -03:00

29 lines
506 B
Lua

return {
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = {
indent = {
char = '',
tab_char = '',
},
scope = {
enabled = true,
show_start = true,
show_end = false,
highlight = { 'Function', 'Label' },
},
exclude = {
filetypes = {
'help',
'dashboard',
'neo-tree',
'Trouble',
'lazy',
'mason',
'notify',
'toggleterm',
'lazyterm',
},
},
},
}