Highlight tabs, trailing whitespace, and non-breaking spaces

This commit is contained in:
Dreaded_X 2024-06-19 10:52:41 +02:00
parent 24313cc9c0
commit 7512d46578
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4

View File

@ -57,3 +57,7 @@ vim.o.showmode = false
-- Minimum number of screen lines above and below the cursor -- Minimum number of screen lines above and below the cursor
vim.o.scrolloff = 10 vim.o.scrolloff = 10
-- Highlight tabs and trailing whitespace
vim.o.listchars = "trail:~,tab:¦⁃,nbsp:␣"
vim.o.list = true