Added vim plugin Shougo/neocomplcache

This commit is contained in:
Scott Wallace 2014-11-11 22:01:25 +00:00
parent e80025a3bd
commit 90796c8b97

4
.vimrc
View file

@ -12,6 +12,7 @@ Plugin 'scrooloose/syntastic'
Plugin 'scrooloose/nerdtree' Plugin 'scrooloose/nerdtree'
Plugin 'bling/vim-airline' Plugin 'bling/vim-airline'
Plugin '29decibel/codeschool-vim-theme' Plugin '29decibel/codeschool-vim-theme'
Plugin 'Shougo/neocomplcache.vim'
" All of your Plugins must be added before the following line " All of your Plugins must be added before the following line
call vundle#end() " required call vundle#end() " required
@ -44,3 +45,6 @@ syntax on
autocmd StdinReadPre * let s:std_in=1 autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
map <C-n> :NERDTreeToggle<CR> map <C-n> :NERDTreeToggle<CR>
" Autocomplete
let g:neocomplcache_enable_at_startup = 1