summaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2014-07-14 23:14:48 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2014-07-14 23:14:49 +0200
commit6933179dc3ffb438e0665c67e43d2c4599fec36c (patch)
tree250e0121d60c7cda0724b5c2762537c46f5b817c /.vim
parent4ff8478f98f817c9403dcc0733142bc875516aba (diff)
downloaddotfiles-6933179dc3ffb438e0665c67e43d2c4599fec36c.tar.gz
dotfiles-6933179dc3ffb438e0665c67e43d2c4599fec36c.tar.bz2
dotfiles-6933179dc3ffb438e0665c67e43d2c4599fec36c.zip
[vim] Bundle -> Plugin
Diffstat (limited to '.vim')
-rw-r--r--.vim/bundles.vim42
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!