diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-13 00:22:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 00:22:23 +0200 |
commit | 6a2d40497a713e001f65ec8dc1af60ada43d995f (patch) | |
tree | b858a692235da901a9182374a37d03a2af163626 /runtime/vimrc_example.vim | |
parent | 51937e1322de0e4348c217947c117f54f3c664c3 (diff) | |
parent | fdb0a5e24eb7fab77ae0d206a00c07b48414a481 (diff) | |
download | rneovim-6a2d40497a713e001f65ec8dc1af60ada43d995f.tar.gz rneovim-6a2d40497a713e001f65ec8dc1af60ada43d995f.tar.bz2 rneovim-6a2d40497a713e001f65ec8dc1af60ada43d995f.zip |
Merge #5427 from Shougo/vim-7.4.1714
vim-patch: 7.4.1765, 7.4.1714
Diffstat (limited to 'runtime/vimrc_example.vim')
-rw-r--r-- | runtime/vimrc_example.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/vimrc_example.vim b/runtime/vimrc_example.vim index c53dde8ceb..17cba123a8 100644 --- a/runtime/vimrc_example.vim +++ b/runtime/vimrc_example.vim @@ -19,6 +19,12 @@ inoremap <C-U> <C-G>u<C-U> " Switch syntax highlighting on syntax on +" Also switch on highlighting the last used search pattern. +set hlsearch + +" I like highlighting strings inside C comments. +let c_comment_strings=1 + " Enable file type detection. " Use the default filetype settings, so that mail gets 'textwidth' set to 72, " 'cindent' is on in C files, etc. |