summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vim/vimrc4
1 files 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