2013-04-16 20:24:00 -04:00
|
|
|
set nocompatible
|
|
|
|
|
|
|
|
filetype off
|
|
|
|
set rtp+=~/.vim/bundle/vundle/
|
|
|
|
call vundle#rc()
|
|
|
|
|
|
|
|
" Let Vundle manage Vundle
|
|
|
|
Bundle 'gmarik/vundle'
|
|
|
|
|
|
|
|
" Define bundles via Github repos
|
|
|
|
Bundle 'croaky/vim-colors-github'
|
|
|
|
Bundle 'danro/rename.vim'
|
|
|
|
Bundle 'kchmck/vim-coffee-script'
|
|
|
|
Bundle 'kien/ctrlp.vim'
|
2013-04-05 11:33:14 -04:00
|
|
|
Bundle 'scrooloose/syntastic'
|
2013-04-16 20:24:00 -04:00
|
|
|
Bundle 'thoughtbot/vim-rspec'
|
|
|
|
Bundle 'tpope/vim-bundler'
|
|
|
|
Bundle 'tpope/vim-cucumber'
|
|
|
|
Bundle 'tpope/vim-endwise'
|
|
|
|
Bundle 'tpope/vim-fugitive'
|
|
|
|
Bundle 'tpope/vim-rails'
|
|
|
|
Bundle 'tpope/vim-surround'
|
2014-03-13 11:46:58 -04:00
|
|
|
Bundle 'vim-scripts/matchit.zip'
|
2013-04-16 20:24:00 -04:00
|
|
|
Bundle 'vim-scripts/ctags.vim'
|
|
|
|
Bundle 'vim-scripts/tComment'
|
|
|
|
|
2013-08-03 10:10:51 -04:00
|
|
|
if filereadable(expand("~/.vimrc.bundles.local"))
|
|
|
|
source ~/.vimrc.bundles.local
|
|
|
|
endif
|
|
|
|
|
2013-04-16 20:24:00 -04:00
|
|
|
filetype on
|