Files
neovim-config/lua/taken/plugins/indent-blankline.lua
Taken 9556024c93 Added types
Signed-off-by: Taken <taken@mairimashita.org>
2024-03-17 16:34:11 +01:00

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,
}