aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorshmibs <shmibs@gmail.com>2014-12-20 23:23:34 -0700
committershmibs <shmibs@gmail.com>2014-12-20 23:24:57 -0700
commit6af9f486067533a4e0b73e1156ed4242a3dacb8a (patch)
treee559867d3aaf3e000772d9006e455c4ad9af4344 /.vimrc
parent011565e21dcf2ec0898aafecce5b236936dd7fc2 (diff)
downloaddotfiles-6af9f486067533a4e0b73e1156ed4242a3dacb8a.tar.gz
actually, trailing space highlighting is ugly
while typing, that is
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc
index e95eb38..cfbadab 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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 "