2014-03-19 15:05:30 -04:00
|
|
|
if &compatible
|
|
|
|
set nocompatible
|
|
|
|
end
|
2013-04-16 20:24:00 -04:00
|
|
|
|
|
|
|
filetype off
|
2014-03-27 17:18:09 -04:00
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim/
|
|
|
|
call vundle#begin()
|
2013-04-16 20:24:00 -04:00
|
|
|
|
|
|
|
" Let Vundle manage Vundle
|
2014-03-27 17:18:09 -04:00
|
|
|
Plugin 'gmarik/Vundle.vim'
|
2013-04-16 20:24:00 -04:00
|
|
|
|
|
|
|
" Define bundles via Github repos
|
2014-03-27 17:18:09 -04:00
|
|
|
Plugin 'christoomey/vim-run-interactive'
|
|
|
|
Plugin 'croaky/vim-colors-github'
|
|
|
|
Plugin 'kchmck/vim-coffee-script'
|
|
|
|
Plugin 'kien/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'
|
2014-09-11 09:11:13 -04:00
|
|
|
Plugin 'tpope/vim-eunuch'
|
2014-03-27 17:18:09 -04:00
|
|
|
Plugin 'tpope/vim-fugitive'
|
|
|
|
Plugin 'tpope/vim-rails'
|
2014-08-27 12:05:12 -04:00
|
|
|
Plugin 'tpope/vim-repeat'
|
2014-03-27 17:18:09 -04:00
|
|
|
Plugin 'tpope/vim-surround'
|
|
|
|
Plugin 'vim-ruby/vim-ruby'
|
|
|
|
Plugin 'vim-scripts/ctags.vim'
|
|
|
|
Plugin 'vim-scripts/matchit.zip'
|
|
|
|
Plugin 'vim-scripts/tComment'
|
2013-04-16 20:24:00 -04:00
|
|
|
|
2013-08-03 10:10:51 -04:00
|
|
|
if filereadable(expand("~/.vimrc.bundles.local"))
|
|
|
|
source ~/.vimrc.bundles.local
|
|
|
|
endif
|
|
|
|
|
2014-03-27 17:18:09 -04:00
|
|
|
call vundle#end()
|
2013-04-16 20:24:00 -04:00
|
|
|
filetype on
|