nvim/lua/custom/plugins/indent-blankline.lua
Simon Lasbrugnas 4fabec4249
feat: cleanup config
Change folder architecture and separate all plugins into their own files
2024-11-09 20:37:37 +01:00

18 lines
291 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = {
debounce = 100,
indent = {
char = "",
tab_char = "",
highlight = { "VertSplit" },
},
scope = {
enabled = true,
show_start = false,
show_end = false,
highlight = "LineNr",
},
},
}