mirror of https://github.com/gabehf/nvim-conf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
524 B
19 lines
524 B
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
event = "User FilePost",
|
|
opts = {
|
|
indent = { char = "│", highlight = "IblChar" },
|
|
scope = { char = "│", highlight = "IblScopeChar" },
|
|
},
|
|
config = function(_, opts)
|
|
dofile(vim.g.base46_cache .. "blankline")
|
|
|
|
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,
|
|
}
|
|
|