nvim-config/lua/configs/indent-blankline.lua
2023-01-10 10:21:09 -08:00

22 lines
426 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