From cbdd4304feb5812f1a08fd2f63bb8de00e5e268c Mon Sep 17 00:00:00 2001 From: Carlos Hurtado <52082645+carlosahs@users.noreply.github.com> Date: Wed, 1 May 2024 12:57:03 -0600 Subject: [PATCH] refactor: display tabs with || --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 5c635b2b..33e9e67e 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'