diff options
Diffstat (limited to '')
-rw-r--r-- | .vim/bundles.vim | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/.vim/bundles.vim b/.vim/bundles.vim index 0635ca3..1ff531f 100644 --- a/.vim/bundles.vim +++ b/.vim/bundles.vim @@ -7,64 +7,64 @@ call vundle#rc() " vundle itself " on a fresh install you need to do: " > config submodules update --init -" > vim -u .vim/bundles.vim +BundleInstall -Bundle 'gmarik/vundle' +" > vim -u .vim/bundles.vim +PluginInstall +Plugin 'gmarik/vundle' " fugitive -- git handling -Bundle 'tpope/vim-fugitive' +Plugin 'tpope/vim-fugitive' " gitv -- gitk for vim -Bundle 'gitv' +Plugin 'gitv' " GUndo -Bundle 'Gundo' +Plugin 'Gundo' " NERDTree -Bundle 'The-NERD-tree' +Plugin 'The-NERD-tree' " Tagbar -Bundle 'Tagbar' +Plugin 'Tagbar' " vim-latex -Bundle 'git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex' +Plugin 'git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex' " surround.vim -Bundle 'surround.vim' +Plugin 'surround.vim' " advanced matching -Bundle 'matchit.zip' +Plugin 'matchit.zip' " alternate files -Bundle 'a.vim' +Plugin 'a.vim' " toggle words -Bundle 'toggle_words.vim' +Plugin 'toggle_words.vim' " syntaxes -Bundle 'lighttpd-syntax' +Plugin 'lighttpd-syntax' " show TODO and XXX -Bundle 'TaskList.vim' +Plugin 'TaskList.vim' " syntactic checkers -Bundle 'Syntastic' +Plugin 'Syntastic' " projects -Bundle 'project.tar.gz' +Plugin 'project.tar.gz' " GPG -Bundle 'gnupg.vim' +Plugin 'gnupg.vim' " Snippet Management -Bundle 'UltiSnips' +Plugin 'UltiSnips' Plugin 'honza/vim-snippets' " Some nice shortcuts -Bundle 'unimpaired.vim' +Plugin 'unimpaired.vim' " i3 Syntax highlighting -Bundle 'PotatoesMaster/i3-vim-syntax' +Plugin 'PotatoesMaster/i3-vim-syntax' " Coffee Script support -Bundle 'kchmck/vim-coffee-script' +Plugin 'kchmck/vim-coffee-script' filetype plugin indent on " required! |