Nix hm #1
1 changed files with 27 additions and 6 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue