nvim: make listchars stand out as non-text

This commit is contained in:
tastytea 2022-08-09 11:26:22 +02:00
parent aa041079c5
commit 93e2284db4
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -1,5 +1,6 @@
vim.o.number = true -- line numbers
vim.o.list = true -- show whitespace
vim.o.listchars = 'tab:▸ ,trail:·,nbsp:+'
vim.o.textwidth = 80 -- default text width
vim.o.colorcolumn = tostring(vim.o.textwidth)
vim.o.wrap = false