This commit is contained in:
Bryan Ramos 2026-04-08 16:00:17 -04:00
parent 23fb66df0b
commit 0270d78072
4 changed files with 22 additions and 10 deletions

View file

@ -2,10 +2,17 @@ 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 = "│" },
--indent = { char = "⎸" },
indent = { char = "" },
indent = {
char = "|",
highlight = "IblIndent",
},
scope = {
enabled = false
},