summaryrefslogtreecommitdiffstats
path: root/init.lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-18 10:42:22 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-18 10:42:22 +0200
commite47fb7a003def337fa363d8a5b5505671479cb5a (patch)
treeae82c39dd1f9c5160c4cd0d0e3e1405ce67e9906 /init.lua
parenta14598771c9858d283006767c3816c4f0aeb4a94 (diff)
downloadnvim-config-e47fb7a003def337fa363d8a5b5505671479cb5a.tar.gz
nvim-config-e47fb7a003def337fa363d8a5b5505671479cb5a.zip
misc(nvim): don't display tab characters
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 0f9d07f..f9d7f6f 100644
--- a/init.lua
+++ b/init.lua
@@ -244,7 +244,7 @@ vim.opt.winborder = "rounded" -- Rounded outline for floating windows
vim.opt.updatetime = 1000 -- Swap file save frequency; also how often GitGutter signs update in ms
vim.opt.list = true -- Display <Tab> and other non-printables
vim.opt.listchars = { -- Characters used by 'list'
- tab = "> ", -- Tab
+ tab = " ", -- Tab
trail = "-", -- Trailing space
nbsp = "+", -- Non-breakable space
extends = "→", -- Last column when 'wrap' is off