refactor(nvim): combine lead & trail to space list char

This commit is contained in:
Price Hiller 2022-09-16 17:32:31 -05:00
parent 434cb94100
commit 8f335f2cbd

View File

@ -93,8 +93,7 @@ M.setup = function()
-- Set listcharacters -- Set listcharacters
opt.list = true opt.list = true
opt.listchars:append("tab:-->") opt.listchars:append("tab:-->")
opt.listchars:append("lead:⋅") opt.listchars:append("space:⋅")
opt.listchars:append("trail:·")
opt.listchars:append("extends:◣") opt.listchars:append("extends:◣")
opt.listchars:append("precedes:◢") opt.listchars:append("precedes:◢")
opt.listchars:append("nbsp:○") opt.listchars:append("nbsp:○")