nvim/lua/plugins/indent-blankline.lua
2026-04-15 21:01:43 -04:00

22 lines
455 B
Lua

return {
{
"lukas-reineke/indent-blankline.nvim",
config = function()
local hooks = require("ibl.hooks")
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "IblIndent", { link = "Comment" })
end)
require("ibl").setup({
indent = {
char = "|",
highlight = "IblIndent",
},
scope = {
enabled = false
},
})
end,
}
}