Change vimrc to use Vundle instead of pathogen
This commit is contained in:
committed by
Fabio Gallonetto
parent
d8472fc0d0
commit
52407ac34c
15
vimrc
15
vimrc
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user