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

26 lines
447 B
Lua
Raw Normal View History

return {
2024-05-07 14:17:48 +05:30
{
2024-05-19 13:03:00 +05:30
'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',
},
2024-05-07 14:17:48 +05:30
},
},
2024-05-19 13:03:00 +05:30
main = 'ibl',
},
2024-05-19 13:03:00 +05:30
}