diff options
author | shmibs <shmibs@gmail.com> | 2014-12-20 23:23:34 -0700 |
---|---|---|
committer | shmibs <shmibs@gmail.com> | 2014-12-20 23:24:57 -0700 |
commit | 6af9f486067533a4e0b73e1156ed4242a3dacb8a (patch) | |
tree | e559867d3aaf3e000772d9006e455c4ad9af4344 | |
parent | 011565e21dcf2ec0898aafecce5b236936dd7fc2 (diff) | |
download | dotfiles-6af9f486067533a4e0b73e1156ed4242a3dacb8a.tar.gz |
actually, trailing space highlighting is ugly
while typing, that is
-rw-r--r-- | .vimrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -27,12 +27,12 @@ highlight Column80 ctermbg=black call matchadd('Column80', '\%81v', 100) "highlight space before tab -highlight SpaceBeforeTab ctermbg=234 +highlight SpaceBeforeTab ctermbg=black call matchadd('SpaceBeforeTab', '^\ \+\t') "highlight trailing spaces -highlight TrailingSpace ctermbg=234 -call matchadd('TrailingSpace', '\S\s\+$') +"highlight TrailingSpace ctermbg=black +"call matchadd('TrailingSpace', '\S\s\+$') """"""""""""" " ALIASES " |