feat(nvim): Remove eob chars

This commit is contained in:
Price Hiller 2022-05-09 01:03:04 -05:00
parent df4e720fbb
commit 43ed122932

View File

@ -96,6 +96,9 @@ M.setup = function()
opt.listchars:append("extends:◣")
opt.listchars:append("precedes:◢")
opt.listchars:append("nbsp:○")
-- Remove end of boundry '~' fills
opt.fillchars='eob: '
end
return M