fixing white space character so l·l doesnt trigger a ligature. Strange.

This commit is contained in:
Daniel Weber 2024-12-23 17:32:52 -05:00
parent 12792a3fa8
commit 250a169b75

View File

@ -25,7 +25,7 @@ vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50 vim.opt.updatetime = 50
vim.opt.colorcolumn = "80" vim.opt.colorcolumn = "80"
vim.opt.listchars = { space = '·', tab = '>~', eol = ''} vim.opt.listchars = { space = '\\u2219', tab = '>~', eol = ''}
vim.opt.list = true vim.opt.list = true
vim.opt.spelllang = 'en_us' vim.opt.spelllang = 'en_us'