|
1 | 1 | set nocompatible |
2 | 2 | filetype off |
3 | 3 |
|
4 | | -set rtp+=~/.vim/bundle/vundle |
5 | | -call vundle#rc() |
6 | | - |
7 | | -" let Vundle manage Vundle |
8 | | -Bundle 'gmarik/vundle' |
9 | | - |
10 | | -Bundle 'mileszs/ack.vim' |
11 | | -Bundle 'rking/ag.vim' |
12 | | -Bundle '907th/vim-auto-save' |
13 | | -Bundle 'kien/ctrlp.vim' |
14 | | -Bundle 'tpope/vim-fugitive' |
15 | | -Bundle 'claco/jasmine.vim' |
16 | | -Bundle 'rgarver/Kwbd.vim' |
17 | | -Bundle 'embear/vim-localvimrc' |
18 | | -Bundle 'scrooloose/nerdcommenter' |
19 | | -Bundle 'scrooloose/nerdtree' |
20 | | -Bundle 'tpope/vim-rails' |
21 | | -Bundle 'ruby-matchit' |
22 | | -Bundle 'ervandew/supertab' |
23 | | -Bundle 'tpope/vim-surround' |
24 | | -Bundle 'scrooloose/syntastic' |
25 | | -Bundle 'skalnik/vim-vroom' |
26 | | -Bundle 'ZoomWin' |
27 | | -Bundle 'terryma/vim-multiple-cursors' |
28 | | -Bundle 'bling/vim-airline' |
29 | | -Bundle 'jgdavey/vim-blockle' |
| 4 | +if !isdirectory(expand("~/.vim/bundle/Vundle.vim/.git")) |
| 5 | + !git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim |
| 6 | +endif |
| 7 | + |
| 8 | +set runtimepath+=~/.vim/bundle/Vundle.vim |
| 9 | + |
| 10 | +call vundle#begin() |
| 11 | + |
| 12 | +Plugin 'gmarik/vundle' |
| 13 | + |
| 14 | +" Files |
| 15 | +Plugin 'mileszs/ack.vim' |
| 16 | +Plugin 'rking/ag.vim' |
| 17 | + |
| 18 | +" Text |
| 19 | +Plugin 'scrooloose/nerdcommenter' |
| 20 | +Plugin 'ervandew/supertab' |
| 21 | +Plugin 'tpope/vim-surround' |
| 22 | +Plugin 'scrooloose/syntastic' |
| 23 | +Plugin 'terryma/vim-multiple-cursors' |
| 24 | + |
| 25 | +" Utilities |
| 26 | +Plugin '907th/vim-auto-save' |
| 27 | +Plugin 'kien/ctrlp.vim' |
| 28 | +Plugin 'rgarver/Kwbd.vim' |
| 29 | +Plugin 'embear/vim-localvimrc' |
| 30 | +Plugin 'scrooloose/nerdtree' |
| 31 | +Plugin 'bling/vim-airline' |
| 32 | +Plugin 'ZoomWin' |
| 33 | + |
| 34 | +" Git |
| 35 | +Plugin 'tpope/vim-fugitive' |
| 36 | + |
| 37 | +" Ruby |
| 38 | +Plugin 'tpope/vim-rails' |
| 39 | +Plugin 'skalnik/vim-vroom' |
| 40 | +Plugin 'jgdavey/vim-blockle' |
| 41 | +Plugin 'ruby-matchit' |
| 42 | + |
| 43 | +call vundle#end() |
| 44 | +filetype plugin indent on |
0 commit comments