From cfc47552f356e07c52728f8c71014bee5c5216c5 Mon Sep 17 00:00:00 2001 From: yushyin Date: Fri, 8 Apr 2016 14:51:06 +0200 Subject: Vim: Silently install neobundle --- vim/vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 4a41591..a9676da 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -29,10 +29,10 @@ let &runtimepath.=','.s:neobundle_dir try call neobundle#begin(s:bundle_dir) catch /E117:/ " neobundle not installed - execute "!mkdir -p " . s:neobundle_dir - execute "!git clone " . s:neobundle_repo . " " . s:neobundle_dir + execute "silent !git clone " . s:neobundle_repo . " " . s:neobundle_dir call neobundle#begin(s:bundle_dir) call neobundle#load_toml(s:neobundle_toml, {}) + set nomore NeoBundleInstall call neobundle#end() quit -- cgit v1.2.3-24-g4f1b