From 1c46dfff4897b32711798ad0aad4c8d038038e3c Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Sat, 21 Sep 2024 16:45:17 +0200 Subject: [PATCH] Remove listchar whitespace visualization, it was just getting in the way imo. --- home/.config/nvim/lua/vim_opt.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/.config/nvim/lua/vim_opt.lua b/home/.config/nvim/lua/vim_opt.lua index b29cd93..56440a7 100644 --- a/home/.config/nvim/lua/vim_opt.lua +++ b/home/.config/nvim/lua/vim_opt.lua @@ -66,7 +66,8 @@ opt.termsync = true opt.scrolloff = 4 -- Whitespaces -opt.listchars = { tab = "→\"", trail = "·", nbsp = "␣" } -opt.list = true +-- opt.listchars = { tab = "→\"", trail = "·", nbsp = "␣" } +-- opt.list = true +opt.list = false return opt