16 lines
335 B
Lua
16 lines
335 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
lazy = true,
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
main = "ibl",
|
|
opts = {},
|
|
config = function()
|
|
local indent = require("ibl").setup({
|
|
-- disable scope highlighting as it requires some tuning
|
|
scope = { enabled = false },
|
|
indent = {
|
|
char = "│",
|
|
},
|
|
})
|
|
end,
|
|
}
|