From bdf2b7a58ca1625c95f543714579b9ec7f6e39a3 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 5 Nov 2019 11:44:09 +0100 Subject: [PATCH] [UPDATE][VIM] Better display of whitespace I noticed that I didn't have any display for non-breaking spaces. While adding this option, I chose to update tabs and trailing spaces display too. --- vim/.vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 1319fdf..35428be 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -160,8 +160,8 @@ set t_vb= set colorcolumn=80 " Show whitespace set list -" Show a tab as an arrow, and spaces as dots -set listchars=tab:»·,trail:· +" Show a tab as an arrow, trailing spaces as ¤, non-breaking spaces as dots +set listchars=tab:>─,trail:·,nbsp:¤ " Timeout quickly on shortcuts, I can't wait two seconds to delete in visual set timeoutlen=500