Use same character for trailing space as leading space

This commit is contained in:
Evie Litherland-Smith 2023-03-06 13:46:41 +00:00
parent 7c9d636378
commit 5df3c9a194

View file

@ -5,7 +5,7 @@ vim.opt.laststatus = 3
vim.opt.shiftwidth = 4
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.listchars = { lead = ".", trail = "-", tab = ">_" }
vim.opt.listchars = { lead = ".", trail = ".", tab = ">->" }
vim.opt.list = true
vim.opt.wrap = true
vim.opt.linebreak = true