24 lines
627 B
Lua
24 lines
627 B
Lua
--- @type LazyPluginSpec
|
|
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
main = "ibl",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
local blankline = require("ibl")
|
|
|
|
vim.opt.list = true
|
|
vim.opt.listchars:append("space:⋅")
|
|
|
|
blankline.setup({
|
|
indent = {
|
|
char = "│",
|
|
highlight = { "Function", "Label" },
|
|
},
|
|
-- show_end_of_line = false,
|
|
-- space_char_blankline = " ",
|
|
-- show_current_context = true,
|
|
-- show_current_context_start = true,
|
|
})
|
|
end,
|
|
}
|