From c1383b1fe60aa8e45920f5c197e01a01c72efc8d Mon Sep 17 00:00:00 2001 From: Jonas Hagberg Date: Tue, 16 Apr 2024 13:49:00 +0200 Subject: [PATCH] Disable displaying whitespace --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 292cf76b..cab8055f 100644 --- a/init.lua +++ b/init.lua @@ -142,8 +142,8 @@ vim.opt.splitbelow = true -- Sets how neovim will display certain whitespace characters in the editor. -- See `:help 'list'` -- and `:help 'listchars'` -vim.opt.list = true -vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } +-- vim.opt.list = true +-- vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } -- Preview substitutions live, as you type! vim.opt.inccommand = 'split'