nvim-config/lua/configs/indent-blankline.lua

23 lines
447 B
Lua
Raw Normal View History

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
-- 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,
-- show_end_of_line = true,
-- space_char_blankline = " ",
2022-02-28 14:54:52 +00:00
}
end
return M