summaryrefslogtreecommitdiff
path: root/.vim/bundles.vim
diff options
context:
space:
mode:
authorRené Neumann <rene.neumann@in.tum.de>2012-09-04 16:20:28 +0200
committerRené Neumann <rene.neumann@in.tum.de>2012-09-04 16:20:29 +0200
commit9d8238cef09d8cb7c270b616ec56a335e0ac0854 (patch)
treea7857c65ec06a48dd575d604539d331a90c01463 /.vim/bundles.vim
parent08ae3f83268783edd51dd97a749c088007f7fea4 (diff)
downloaddotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.tar.gz
dotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.tar.bz2
dotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.zip
Move to bundles in vim -- also remove old craft
Diffstat (limited to '.vim/bundles.vim')
-rw-r--r--.vim/bundles.vim40
1 files changed, 40 insertions, 0 deletions
diff --git a/.vim/bundles.vim b/.vim/bundles.vim
new file mode 100644
index 0000000..7234c0b
--- /dev/null
+++ b/.vim/bundles.vim
@@ -0,0 +1,40 @@
+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
+Bundle 'gmarik/vundle'
+
+" fugitive -- git handling
+Bundle 'tpope/vim-fugitive'
+
+" GUndo
+Bundle 'Gundo'
+
+" NERDTree
+Bundle 'The-NERD-tree'
+
+" Taglist
+Bundle 'taglist.vim'
+
+" 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!