Files
DotFiles/nvim/lua/plugins/indent-blankline.lua
T
2026-05-18 23:18:07 +02:00

27 lines
419 B
Lua

return
{
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
opts = {
indent = {
char = '',
},
scope = {
show_start = false,
show_end = false,
show_exact_scope = false,
},
exclude = {
filetypes = {
'help',
'startify',
'dashboard',
'packer',
'neogitstatus',
'NvimTree',
'Trouble',
},
},
},
}