feat: render spaces as .

This commit is contained in:
Test User 2025-11-14 19:00:32 +02:00
parent 1e8b8dc82e
commit 9cb5c91b17
1 changed files with 7 additions and 3 deletions

View File

@ -110,6 +110,10 @@ vim.o.mouse = 'a'
-- Don't show the mode, since it's already in the status line -- Don't show the mode, since it's already in the status line
vim.o.showmode = false vim.o.showmode = false
-- Renders spaces as "·"
vim.opt.list = true
vim.opt.listchars = vim.opt.listchars + 'space:·'
-- Sync clipboard between OS and Neovim. -- Sync clipboard between OS and Neovim.
-- Schedule the setting after `UiEnter` because it can increase startup-time. -- Schedule the setting after `UiEnter` because it can increase startup-time.
-- Remove this option if you want your OS clipboard to remain independent. -- Remove this option if you want your OS clipboard to remain independent.