From 3bd15259ca9f110f445e20a025f407403a939c58 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 2 Oct 2024 17:01:13 +0200 Subject: [PATCH] make tab less annoying --- lua/config/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/options.lua b/lua/config/options.lua index 0096832..c9163ef 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -66,7 +66,7 @@ vim.opt.splitbelow = true -- 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'