Browse Source

Turned on vim search highlighting with shortcut to turn off after.

master
Daniel Sissom 5 years ago
parent
commit
a31b1d6b6c
Signed by untrusted user who does not match committer: djsissom GPG Key ID: 2C30FFB796852389
1 changed files with 5 additions and 1 deletions
  1. + 5
    - 1
      vim/vimrc

+ 5
- 1
vim/vimrc

@ -54,7 +54,8 @@ set smartcase " Do smart case matching
"set autowrite " Automatically save before commands like :next and :make "set autowrite " Automatically save before commands like :next and :make
"set hidden " Hide buffers when they are abandoned "set hidden " Hide buffers when they are abandoned
set mouse=a " Enable mouse usage (all modes) set mouse=a " Enable mouse usage (all modes)
set nohlsearch " Turn off search highlighting
"set nohlsearch " Turn off search highlighting
set hlsearch " Turn on search highlighting
"set expandtab " Turn tabs to spaces "set expandtab " Turn tabs to spaces
set shiftwidth=4 " Auto-indent amount when using cindent, <<, >>, etc. set shiftwidth=4 " Auto-indent amount when using cindent, <<, >>, etc.
set softtabstop=4 " How many spaces represent a tab set softtabstop=4 " How many spaces represent a tab
@ -68,6 +69,9 @@ set nf=octal,hex,alpha " additional ctrl-a increments
set spell spelllang=en_us " Set spell check language set spell spelllang=en_us " Set spell check language
set scrolloff=5 " Add visible lines beyond cursor at top or bottom of window set scrolloff=5 " Add visible lines beyond cursor at top or bottom of window
" Turn off search highlighting with Enter
nnoremap <silent> <CR> :nohlsearch<CR><CR>
noremap n nzz noremap n nzz
noremap N Nzz noremap N Nzz
noremap * *zz noremap * *zz

Loading…
Cancel
Save