This commit is contained in:
Bryan Ramos 2026-04-15 21:01:43 -04:00
commit da6106c774
15 changed files with 1050 additions and 0 deletions

View file

@ -0,0 +1,22 @@
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,
}
}