Removal in deb7ee5948
was accidental.
Also, removes `vim/bundle` directory as it is no longer useful to us, since
`vundle` creates it when it needs to.
36 lines
823 B
Text
36 lines
823 B
Text
if &compatible
|
|
set nocompatible
|
|
end
|
|
|
|
filetype off
|
|
set rtp+=~/.vim/bundle/vundle/
|
|
call vundle#rc()
|
|
|
|
" Let Vundle manage Vundle
|
|
Bundle 'gmarik/vundle'
|
|
|
|
" Define bundles via Github repos
|
|
Bundle 'christoomey/vim-run-interactive'
|
|
Bundle 'croaky/vim-colors-github'
|
|
Bundle 'danro/rename.vim'
|
|
Bundle 'kchmck/vim-coffee-script'
|
|
Bundle 'kien/ctrlp.vim'
|
|
Bundle 'pbrisbin/vim-mkdir'
|
|
Bundle 'scrooloose/syntastic'
|
|
Bundle 'slim-template/vim-slim'
|
|
Bundle 'thoughtbot/vim-rspec'
|
|
Bundle 'tpope/vim-bundler'
|
|
Bundle 'tpope/vim-endwise'
|
|
Bundle 'tpope/vim-fugitive'
|
|
Bundle 'tpope/vim-rails'
|
|
Bundle 'tpope/vim-surround'
|
|
Bundle 'vim-ruby/vim-ruby'
|
|
Bundle 'vim-scripts/ctags.vim'
|
|
Bundle 'vim-scripts/matchit.zip'
|
|
Bundle 'vim-scripts/tComment'
|
|
|
|
if filereadable(expand("~/.vimrc.bundles.local"))
|
|
source ~/.vimrc.bundles.local
|
|
endif
|
|
|
|
filetype on
|