feat: listchars eol character

This commit is contained in:
Matej Janezic 2024-01-25 21:02:08 +01:00
parent d6ce80e6a2
commit b087eaa1ef
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 7 additions and 0 deletions

View File

@ -36,3 +36,10 @@ vim.o.timeoutlen = 300
vim.o.completeopt = 'menuone,noselect'
vim.o.termguicolors = true
-- eol chars
vim.opt.list = true
vim.opt.listchars = {
eol = '󰌑',
tab = '<->',
}