18 lines
464 B
Lua
18 lines
464 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
local blankline = require("indent_blankline")
|
|
|
|
vim.opt.list = true
|
|
vim.opt.listchars:append("space:⋅")
|
|
|
|
blankline.setup({
|
|
show_end_of_line = false,
|
|
space_char_blankline = " ",
|
|
show_current_context = true,
|
|
show_current_context_start = true,
|
|
})
|
|
end,
|
|
}
|