Switch from pathogen to vundle
This commit is contained in:
parent
1ee0547a03
commit
008eafa2ca
1 changed files with 14 additions and 1 deletions
15
vimrc
15
vimrc
|
@ -1,4 +1,17 @@
|
|||
execute pathogen#infect()
|
||||
set nocompatible
|
||||
filetype off
|
||||
|
||||
" set the runtime path to include Vundle and initialize
|
||||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'tpope/vim-sleuth'
|
||||
Plugin 'altercation/vim-colors-solarized'
|
||||
call vundle#end()
|
||||
|
||||
filetype plugin indent on
|
||||
syntax enable
|
||||
if has('gui_running')
|
||||
set background=light
|
||||
|
|
Loading…
Reference in a new issue