mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-12-22 01:03:35 +01:00
[vim] Fix listchars error on space
From https://stackoverflow.com/a/36374234
This commit is contained in:
parent
0e6e7d2451
commit
279b135ffe
1 changed files with 5 additions and 1 deletions
|
@ -26,7 +26,11 @@ set shiftwidth=4
|
|||
set noexpandtab
|
||||
|
||||
" Show whitespace in characters (toggle with set list)
|
||||
if has("patch-7.4.710")
|
||||
set listchars=tab:→\ ,space:·,nbsp:␣,trail:•,eol:¶,precedes:«,extends:»
|
||||
else
|
||||
set listchars=tab:→\ ,nbsp:␣,trail:•,eol:¶,precedes:«,extends:»
|
||||
endif
|
||||
|
||||
"Folding
|
||||
"augroup vimrc
|
||||
|
|
Loading…
Reference in a new issue