forked from stevemartin/dotvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundles.vimrc
51 lines (39 loc) · 1014 Bytes
/
bundles.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
set nocompatible
filetype off
if !isdirectory(expand("~/.vim/bundle/Vundle.vim/.git"))
!git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
endif
set runtimepath+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" Files
Plugin 'mileszs/ack.vim'
Plugin 'rking/ag.vim'
" Text
Plugin 'scrooloose/nerdcommenter'
Plugin 'ervandew/supertab'
Plugin 'tpope/vim-surround'
Plugin 'scrooloose/syntastic'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-abolish'
" Utilities
Plugin 'bling/vim-airline'
Plugin 'kien/ctrlp.vim'
Plugin 'rgarver/Kwbd.vim'
Plugin 'embear/vim-localvimrc'
Plugin 'scrooloose/nerdtree'
Plugin 'taglist.vim'
Plugin 'ZoomWin'
" Git
Plugin 'tpope/vim-fugitive'
" Syntax
Plugin 'ekalinin/Dockerfile.vim'
" Ruby
Plugin 'tpope/vim-rails'
Plugin 'skalnik/vim-vroom'
Plugin 'jgdavey/vim-blockle'
Plugin 'ruby-matchit'
source ~/.vim/bundles-clojure.vimrc
source ~/.vim/bundles-javascript.vimrc
call vundle#end()
filetype plugin indent on