2022-02-28 14:54:52 +00:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.config()
|
|
|
|
local status_ok, indent_blankline = pcall(require, "indent_blankline")
|
|
|
|
if not status_ok then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-09-27 00:47:23 +00:00
|
|
|
-- vim.opt.list = true
|
|
|
|
-- vim.opt.listchars:append "space:⋅"
|
|
|
|
-- vim.opt.listchars:append "eol:↴"
|
2022-02-28 14:54:52 +00:00
|
|
|
|
|
|
|
indent_blankline.setup {
|
2022-03-01 00:29:01 +00:00
|
|
|
show_current_context = false,
|
2022-02-28 14:54:52 +00:00
|
|
|
show_current_context_start = false,
|
2022-09-27 00:47:23 +00:00
|
|
|
-- show_end_of_line = true,
|
|
|
|
-- space_char_blankline = " ",
|
2022-02-28 14:54:52 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|
|
|
|
|