summaryrefslogtreecommitdiff
path: root/.vim/bundles.vim
blob: b74debfdcf93297daf2d2435f44da059038da560 (plain)
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
set nocompatible               " be iMproved
filetype off                   " required!

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

" vundle itself
" on a fresh install you need to do:
" > git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
" > vim -u .vim/bundles.vim +BundleInstall
Bundle 'gmarik/vundle'

" fugitive -- git handling
Bundle 'tpope/vim-fugitive'

" gitv -- gitk for vim
Bundle 'gitv'

" GUndo
Bundle 'Gundo'

" NERDTree
Bundle 'The-NERD-tree'

" Taglist
Bundle 'taglist.vim'

" vim-latex
Bundle 'git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex'

" surround.vim
Bundle 'surround.vim'

" advanced matching
Bundle 'matchit.zip'

" alternate files
Bundle 'a.vim'

" toggle words
Bundle 'toggle_words.vim'

" syntaxes
Bundle 'lighttpd-syntax'


filetype plugin indent on     " required!