From 570010d8f73d605fff9744ab5092c3aa1cb2c6e8 Mon Sep 17 00:00:00 2001 From: hustcalm Date: Mon, 24 Jun 2013 22:59:25 +0800 Subject: [PATCH] add one file to vimrcs making life easier for managing plugins --- vimrcs/plugins_manager.vim | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 vimrcs/plugins_manager.vim diff --git a/vimrcs/plugins_manager.vim b/vimrcs/plugins_manager.vim new file mode 100644 index 00000000..fd946b0d --- /dev/null +++ b/vimrcs/plugins_manager.vim @@ -0,0 +1,7 @@ +set nocompatible +syntax on +filetype off +set rtp+=~/.vim_runtime/bundle/vundle/ +call vundle#rc() +Bundle 'gmarik/vundle' +filetype plugin indent on