Disable displaying whitespace

This commit is contained in:
Jonas Hagberg 2024-04-16 13:49:00 +02:00
parent 769e3c8384
commit c1383b1fe6
1 changed files with 2 additions and 2 deletions

View File

@ -142,8 +142,8 @@ vim.opt.splitbelow = true
-- Sets how neovim will display certain whitespace characters in the editor.
-- See `:help 'list'`
-- and `:help 'listchars'`
vim.opt.list = true
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
-- vim.opt.list = true
-- vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
-- Preview substitutions live, as you type!
vim.opt.inccommand = 'split'