Files
nix-config/home/base/server/neovim/lua/plugins/indent-blankline.lua
2023-07-10 19:11:49 +08:00

17 lines
368 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
config = function()
vim.opt.list = true
vim.opt.listchars:append("space:⋅")
vim.opt.listchars:append("eol:↴")
require("indent_blankline").setup({
char = "",
show_end_of_line = true,
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
})
end,
}