mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-12 00:40:33 -07:00
16 lines
462 B
Lua
16 lines
462 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
main = "ibl",
|
|
event = "User FilePost",
|
|
opts = {
|
|
indent = { char = "│", highlight = "IblChar" },
|
|
scope = { char = "│", highlight = "IblScopeChar" },
|
|
},
|
|
config = function(_, opts)
|
|
local hooks = require "ibl.hooks"
|
|
hooks.register(hooks.type.WHITESPACE, hooks.builtin.hide_first_space_indent_level)
|
|
require("ibl").setup(opts)
|
|
|
|
dofile(vim.g.base46_cache .. "blankline")
|
|
end,
|
|
}
|