summaryrefslogtreecommitdiff
path: root/.vim/bundles.vim
blob: c32c005ace3922c23a3f734537a94be5a60f3d49 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
set nocompatible               " be iMproved
filetype off                   " required!

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

" vundle itself
" on a fresh install you need to do:
" > config submodules update --init
" > vim -u .vim/bundles.vim +PluginInstall
Plugin 'VundleVim/Vundle.vim', {'name' : 'vundle'}

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

" gitv -- gitk for vim
Plugin 'gregsexton/gitv'

" GUndo
Plugin 'sjl/gundo.vim'

" NERDTree
Plugin 'scrooloose/nerdtree'

" Tagbar
Plugin 'majutsushi/tagbar'

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

" surround.vim
Plugin 'tpope/vim-surround'

" advanced matching
Plugin 'tmhedberg/matchit'

" alternate files
Plugin 'a.vim'

" toggle words
Plugin 'toggle_words.vim'

" syntactic checkers
Plugin 'scrooloose/syntastic'

" projects
Plugin 'project.tar.gz'

" GPG
Plugin 'jamessan/vim-gnupg'

" Snippet Management
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'

" Some nice shortcuts
Plugin 'tpope/vim-unimpaired'

" i3 Syntax highlighting
Plugin 'PotatoesMaster/i3-vim-syntax'

" LiveScript support
Plugin 'necoro/vim-ls'

" YCM
Plugin 'Valloric/YouCompleteMe'

call vundle#end()
filetype plugin indent on     " required!