nvim-config/lua/plugins/indent-blankline.lua
Walter Jenkins dd1d1bb6e9 working
2025-04-16 08:39:09 -05:00

25 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',
},
},
},
}