From 250a169b7563a7a4b1a9ee2b45da07359016603d Mon Sep 17 00:00:00 2001 From: Daniel Weber Date: Mon, 23 Dec 2024 17:32:52 -0500 Subject: [PATCH] =?UTF-8?q?fixing=20white=20space=20character=20so=20l?= =?UTF-8?q?=C2=B7l=20doesnt=20trigger=20a=20ligature.=20Strange.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/pippy/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/pippy/init.lua b/lua/pippy/init.lua index f9c52ac..5f71bca 100644 --- a/lua/pippy/init.lua +++ b/lua/pippy/init.lua @@ -25,7 +25,7 @@ vim.opt.isfname:append("@-@") vim.opt.updatetime = 50 vim.opt.colorcolumn = "80" -vim.opt.listchars = { space = '·', tab = '>~', eol = '↵'} +vim.opt.listchars = { space = '\\u2219', tab = '>~', eol = '↵'} vim.opt.list = true vim.opt.spelllang = 'en_us'