From 8d252d2c493512d8e8030fff96a1fc1249d48df6 Mon Sep 17 00:00:00 2001 From: Carlos Hurtado <52082645+carlosahs@users.noreply.github.com> Date: Wed, 1 May 2024 13:05:46 -0600 Subject: [PATCH] fix: restore character to display tabs --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 33e9e67e..5c635b2b 100644 --- a/init.lua +++ b/init.lua @@ -150,7 +150,7 @@ vim.opt.splitbelow = false -- See `:help 'list'` -- and `:help 'listchars'` vim.opt.list = true -vim.opt.listchars = { tab = '||', trail = '·', nbsp = '␣' } +vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } -- Preview substitutions live, as you type! vim.opt.inccommand = 'split'