diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-18 10:42:22 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-18 10:42:22 +0200 |
| commit | fc14e568f0e412e2eb6261bda8ef37843168d8e7 (patch) | |
| tree | a38b865cf6ea0cb9165fb9a2594a3a0ee3d47627 /.config | |
| parent | 0fa596575ce7dffdde44b720732317b35c57774c (diff) | |
| download | dotfiles-fc14e568f0e412e2eb6261bda8ef37843168d8e7.tar.gz dotfiles-fc14e568f0e412e2eb6261bda8ef37843168d8e7.zip | |
misc(nvim): don't display tab characters
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/init.lua | 2 |
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 |
