Change vimrc to use Vundle instead of pathogen

This commit is contained in:
Fabio Gallonetto
2013-03-15 11:38:51 +01:00
committed by Fabio Gallonetto
parent d8472fc0d0
commit 52407ac34c
2 changed files with 112 additions and 8 deletions

15
vimrc
View File

@@ -8,14 +8,6 @@ if filereadable(expand("~/.vimrc.before"))
source ~/.vimrc.before
endif
" =============== Pathogen Initialization ===============
" This loads all the plugins in ~/.vim/bundle
" Use tpope's pathogen plugin to manage all other plugins
runtime bundle/tpope-vim-pathogen/autoload/pathogen.vim
call pathogen#infect()
call pathogen#helptags()
" ================ General Config ====================
set number "Line numbers are good
@@ -35,6 +27,13 @@ set hidden
"turn on syntax highlighting
syntax on
" =============== Vundle Initialization ===============
" This loads all the plugins specified in ~/.vim/vundle.vim
" Use Vundle plugin to manage all other plugins
if filereadable(expand("~/.vim/vundles.vim"))
source ~/.vim/vundles.vim
endif
" ================ Search Settings =================
set incsearch "Find the next match as we type the search