From 1cc7ab3dfd03d2ac5b617b553803c791b8ef8f14 Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 9 May 2011 23:00:50 -0500 Subject: [PATCH] test/vimrc --- test/vimrc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/test/vimrc b/test/vimrc index 172679e..272c3a4 100644 --- a/test/vimrc +++ b/test/vimrc @@ -1,13 +1,19 @@ " vim -u test/vimrc set nocompatible +let root = '/tmp/vundle_bundles/' +if !isdirectory(expand(root).'/vundle') + exec '!git clone http://github.com/gmarik/vundle.git '.root.'/vundle' +endif + filetype off + runtime macros/matchit.vim -set rtp+=~/.vim/vundle.git/ -call vundle#rc('/tmp/vundle_bundles') +exec 'set rtp+='.root.'/vundle' -silent BundleClean! + +call vundle#rc(root) " vim-scripts name Bundle 'molokai'