29 lines
506 B
Lua
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',
|
|
},
|
|
},
|
|
},
|
|
}
|