31 lines
697 B
Text
31 lines
697 B
Text
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'
|
|
Bundle 'scrooloose/syntastic'
|
|
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'
|
|
Bundle 'tsaleh/vim-matchit'
|
|
Bundle 'vim-scripts/ctags.vim'
|
|
Bundle 'vim-scripts/tComment'
|
|
|
|
if filereadable(expand("~/.vimrc.bundles.local"))
|
|
source ~/.vimrc.bundles.local
|
|
endif
|
|
|
|
filetype on
|