Nix hm #1

Merged
LarssonMartin1998 merged 106 commits from nix-hm into main 2025-02-25 14:13:05 +00:00
Showing only changes of commit 3fa4d50d74 - Show all commits

View file

@ -2,10 +2,31 @@ return {
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
main = "ibl", main = "ibl",
event = "BufRead", event = "BufRead",
opts = { config = function()
debounce = 100, local ibl = require("ibl")
scope = { ibl.setup({
enabled = false debounce = 100,
}, indent = {
} char = "",
},
scope = {
enabled = true,
char = "",
show_start = false,
show_end = false,
highlight = { "IblScope" },
},
})
local colors = require("ayu.colors")
colors.generate(true)
local highlights = {
{ "IblScope", { fg = colors.keyword } },
{ "@ibl.scope.char.1", { fg = colors.keyword } },
}
for _, hl in ipairs(highlights) do
vim.api.nvim_set_hl(0, hl[1], hl[2])
end
end
} }