Merge pull request #5 from sashaaKr/render_spaces

feat: render spaces as .
This commit is contained in:
sasha 2025-11-14 19:01:28 +02:00 committed by GitHub
commit 79c3b120a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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.