feat(nvim): add listchars

This commit is contained in:
Price Hiller 2022-05-06 16:52:28 -05:00
parent 7ade5f98e0
commit 8a93724792

View File

@ -87,6 +87,14 @@ M.setup = function()
-- Make statusline global
opt.laststatus = 3
-- Set listcharacters
opt.list = true
opt.listchars:append("tab:⭾⭾")
opt.listchars:append("lead:·")
opt.listchars:append("extends:◣")
opt.listchars:append("precedes:◢")
opt.listchars:append("nbsp:○")
end
return M