15 lines
231 B
Lua
15 lines
231 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
scope = {
|
|
enabled = true,
|
|
show_start = false,
|
|
show_end = false,
|
|
},
|
|
},
|
|
config = function (_, _opts)
|
|
require("ibl").setup(_opts)
|
|
end
|
|
}
|