general options: add listchars back

It was in the bépo config file and is useful to detect trailing spaces
and nbsp chars.
This commit is contained in:
Fabrice Mouhartem 2024-01-18 12:41:00 +01:00
parent 22b51e96bc
commit ce9a024a32
1 changed files with 4 additions and 0 deletions

View File

@ -60,3 +60,7 @@ vim.o.tw = 80
vim.o.winwidth = 88
vim.o.scrolloff = 10
vim.cmd "set formatoptions-=t"
-- Make some typographic chars visible
vim.opt.listchars:append({nbsp = "·", trail = "¤", eol = ''})
vim.o.list = true