kickstart.nvim/lua/kickstart/plugins/indent_line.lua

26 lines
447 B
Lua

return {
{
'lukas-reineke/indent-blankline.nvim',
event = 'BufEnter',
opts = {
scope = { enabled = false },
exclude = {
filetypes = {
'help',
'alpha',
'dashboard',
'neo-tree',
'Trouble',
'trouble',
'lazy',
'mason',
'notify',
'toggleterm',
'lazyterm',
},
},
},
main = 'ibl',
},
}