* haml, html and markdown highlight still work without these plugins * treetop and textile are likely very situational * unsure if anyone is using greplace
27 lines
608 B
Text
27 lines
608 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'
|
|
|
|
filetype on
|