Moved .vimrc-level settings (pertaining to search) out of ./vim/settings/yadr-search.vim and into ./vimrc. Also removed unnecessary+problematic viminfo setting.

This commit is contained in:
Dan Simmons 2015-01-08 13:56:43 -05:00
parent 3b8120e9d4
commit 4907187a33
2 changed files with 6 additions and 8 deletions

View File

@ -1,8 +0,0 @@
" ================ 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

@ -102,6 +102,12 @@ set scrolloff=8 "Start scrolling when we're 8 lines away from margins
set sidescrolloff=15
set sidescroll=1
" ================ Search ===========================
set incsearch " Find the next match as we type the search
set hlsearch " Highlight searches by default
set ignorecase " Ignore case when searching...
set smartcase " ...unless we type a capital
" ================ Custom Settings ========================
so ~/.yadr/vim/settings.vim