summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index 0f9d07f..f9d7f6f 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/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