[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.
This commit is contained in:
parent
83270a9bce
commit
bdf2b7a58c
|
@ -160,8 +160,8 @@ set t_vb=
|
||||||
set colorcolumn=80
|
set colorcolumn=80
|
||||||
" Show whitespace
|
" Show whitespace
|
||||||
set list
|
set list
|
||||||
" Show a tab as an arrow, and spaces as dots
|
" Show a tab as an arrow, trailing spaces as ¤, non-breaking spaces as dots
|
||||||
set listchars=tab:»·,trail:·
|
set listchars=tab:>─,trail:·,nbsp:¤
|
||||||
|
|
||||||
" Timeout quickly on shortcuts, I can't wait two seconds to delete in visual
|
" Timeout quickly on shortcuts, I can't wait two seconds to delete in visual
|
||||||
set timeoutlen=500
|
set timeoutlen=500
|
||||||
|
|
Loading…
Reference in a new issue