-
Notifications
You must be signed in to change notification settings - Fork 32
/
bundles.vim
55 lines (48 loc) · 2.16 KB
/
bundles.vim
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
52
53
54
55
set nocompatible " be iMproved
if !isdirectory(expand("~/.vim/bundle/vundle/.git"))
!git clone git://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
endif
filetype off " must be off before Vundle has run
set runtimepath+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle "git://github.com/mileszs/ack.vim.git"
Bundle "git://github.com/tpope/vim-rvm.git"
Bundle "git://github.com/tpope/vim-fugitive"
Bundle "git://github.com/tpope/vim-rails.git"
Bundle "git://github.com/tpope/vim-surround.git"
Bundle "git://github.com/chrismetcalf/vim-yankring.git"
Bundle "git://github.com/chrismetcalf/vim-taglist.git"
Bundle "git://github.com/tpope/vim-endwise.git"
Bundle "git://github.com/scrooloose/syntastic.git"
Bundle "git://github.com/Townk/vim-autoclose.git"
Bundle "git://github.com/scrooloose/nerdtree.git"
Bundle "git://github.com/sophacles/vim-bundle-sparkup.git"
Bundle "git://github.com/panozzaj/vim-autocorrect.git"
Bundle "git://github.com/tomtom/tcomment_vim.git"
Bundle "git://github.com/sjl/gundo.vim.git"
Bundle "git://github.com/clones/vim-fuzzyfinder.git"
Bundle "git://github.com/godlygeek/tabular.git"
Bundle "git://github.com/vim-scripts/Gist.vim.git"
Bundle "git://github.com/vim-scripts/L9.git"
Bundle "git://github.com/Bogdanp/rbrepl.vim.git"
Bundle "git://github.com/rson/vim-conque.git"
Bundle 'git://git.wincent.com/command-t.git'
Bundle 'git://github.com/altercation/vim-colors-solarized.git'
Bundle "git://github.com/kana/vim-textobj-user.git"
Bundle "git://github.com/nelstrom/vim-textobj-rubyblock.git"
Bundle "git://github.com/ervandew/supertab.git"
Bundle "jQuery"
Bundle "git://github.com/kchmck/vim-coffee-script.git"
Bundle "git://github.com/pangloss/vim-javascript.git"
Bundle "git://github.com/cakebaker/scss-syntax.vim.git"
Bundle "git://github.com/tpope/vim-haml.git"
Bundle "git://github.com/tpope/vim-markdown.git"
Bundle "git://github.com/greyblake/vim-preview.git"
Bundle "git://github.com/tpope/vim-bundler.git"
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "honza/vim-snippets"
Bundle "garbas/vim-snipmate"
filetype plugin indent on " and turn it back on!
runtime macros/matchit.vim