* kien has not commited to ctrlp.vim in over a year. * Switch to ctrlpvim/ctrlp.vim since it is actively maintained.
38 lines
882 B
Text
38 lines
882 B
Text
if &compatible
|
|
set nocompatible
|
|
end
|
|
|
|
filetype off
|
|
set rtp+=~/.vim/bundle/Vundle.vim/
|
|
call vundle#begin()
|
|
|
|
" Let Vundle manage Vundle
|
|
Plugin 'gmarik/Vundle.vim'
|
|
|
|
" Define bundles via Github repos
|
|
Plugin 'christoomey/vim-run-interactive'
|
|
Plugin 'croaky/vim-colors-github'
|
|
Plugin 'kchmck/vim-coffee-script'
|
|
Plugin 'ctrlpvim/ctrlp.vim'
|
|
Plugin 'pbrisbin/vim-mkdir'
|
|
Plugin 'scrooloose/syntastic'
|
|
Plugin 'slim-template/vim-slim'
|
|
Plugin 'thoughtbot/vim-rspec'
|
|
Plugin 'tpope/vim-bundler'
|
|
Plugin 'tpope/vim-endwise'
|
|
Plugin 'tpope/vim-eunuch'
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'tpope/vim-rails'
|
|
Plugin 'tpope/vim-repeat'
|
|
Plugin 'tpope/vim-surround'
|
|
Plugin 'vim-ruby/vim-ruby'
|
|
Plugin 'vim-scripts/ctags.vim'
|
|
Plugin 'vim-scripts/matchit.zip'
|
|
Plugin 'vim-scripts/tComment'
|
|
|
|
if filereadable(expand("~/.vimrc.bundles.local"))
|
|
source ~/.vimrc.bundles.local
|
|
endif
|
|
|
|
call vundle#end()
|
|
filetype on
|