From 90796c8b97f1db8ec329bb8ea019459eb4d9ed55 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 11 Nov 2014 22:01:25 +0000 Subject: [PATCH] Added vim plugin Shougo/neocomplcache --- .vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vimrc b/.vimrc index cc6d8e7..b5e4dd6 100644 --- a/.vimrc +++ b/.vimrc @@ -12,6 +12,7 @@ Plugin 'scrooloose/syntastic' Plugin 'scrooloose/nerdtree' Plugin 'bling/vim-airline' Plugin '29decibel/codeschool-vim-theme' +Plugin 'Shougo/neocomplcache.vim' " All of your Plugins must be added before the following line call vundle#end() " required @@ -44,3 +45,6 @@ syntax on autocmd StdinReadPre * let s:std_in=1 autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif map :NERDTreeToggle + +" Autocomplete +let g:neocomplcache_enable_at_startup = 1