Externalizing and improving search configuration

This commit is contained in:
Luiz Gonzaga dos Santos Filho
2013-04-17 17:16:36 +02:00
parent 54bd32317f
commit 15faaab500
2 changed files with 8 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
" ================ Search Settings =================
set incsearch " Find the next match as we type the search
set hlsearch " Hilight searches by default
set viminfo='100,f1 " Save up to 100 marks, enable capital marks
set ignorecase " Ignore case when searching...
set smartcase " ...unless we type a capital

6
vimrc
View File

@@ -40,12 +40,6 @@ if filereadable(expand("~/.vim/vundles.vim"))
source ~/.vim/vundles.vim source ~/.vim/vundles.vim
endif endif
" ================ Search Settings =================
set incsearch "Find the next match as we type the search
set hlsearch "Hilight searches by default
set viminfo='100,f1 "Save up to 100 marks, enable capital marks
" ================ Turn Off Swap Files ============== " ================ Turn Off Swap Files ==============
set noswapfile set noswapfile