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

25 lines
401 B
Lua
Raw Normal View History

return {
2024-05-07 14:17:48 +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
main = "ibl",
}}