aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-13 17:26:53 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-13 17:29:50 +1200
commit8640888fdfdee047e4f40df4a1a89510330f1fe4 (patch)
tree9f1badc07d77d69b9be579f35f31f268eafab243 /vim/vimrc
parentMove to after headers when writing new mail (diff)
downloaddotfiles-8640888fdfdee047e4f40df4a1a89510330f1fe4.tar.gz
dotfiles-8640888fdfdee047e4f40df4a1a89510330f1fe4.zip
Remove :nohlsearch from vimrc
This doesn't actually appear to be necessary.
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index bb0a020f..5ae5421e 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -107,8 +107,7 @@ endif
" Highlight settings for search
if has('extra_search')
- set hlsearch " Highlight completed searches...
- nohlsearch " ...but clear it on startup or after re-sourcing
+ set hlsearch " Highlight completed searches
set incsearch " Show matches as I type
endif