nvim-config/lua/configs/indent-blankline.lua
2022-09-26 17:47:23 -07:00

23 lines
447 B
Lua

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:↴"
indent_blankline.setup {
show_current_context = false,
show_current_context_start = false,
-- show_end_of_line = true,
-- space_char_blankline = " ",
}
end
return M