diff options
-rw-r--r-- | vim/.vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -36,6 +36,7 @@ Plugin 'tpope/vim-surround' " cs)] to replace parenthesis pairs, e.g. Plugin 'rickhowe/diffchar.vim' " diffing on character level Plugin 'airblade/vim-gitgutter' " git diff in gutter Plugin 'godlygeek/tabular' " tabularize things +Plugin 'google/vim-searchindex' " shows '[N/M]' when searching call vundle#end() " End Vundle @@ -58,6 +59,10 @@ set fillchars+=fold:\ set statusline= set switchbuf=usetab,newtab +set incsearch +set hlsearch +map <LocalLeader>q :nohlsearch<CR> + filetype plugin indent on syntax enable |