mirror of
https://github.com/itme-brain/nvim.git
synced 2026-05-08 07:00:13 -04:00
22 lines
455 B
Lua
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,
|
|
}
|
|
}
|