Switch from pathogen to vundle

This commit is contained in:
Tobias Schmidl 2018-01-29 13:50:57 +01:00
parent 1ee0547a03
commit 008eafa2ca

15
vimrc
View file

@ -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 syntax enable
if has('gui_running') if has('gui_running')
set background=light set background=light