summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryushyin <yushyin@saga>2016-04-08 14:51:06 +0200
committeryushyin <yushyin@saga>2016-04-08 14:51:06 +0200
commitcfc47552f356e07c52728f8c71014bee5c5216c5 (patch)
treeee113e5f787143241856b81c2b7765283c9544df
parentf28b932e16c17a21b68a4a96bc9aa2ab8c7d309c (diff)
downloaddotfiles-cfc47552f356e07c52728f8c71014bee5c5216c5.tar.gz
dotfiles-cfc47552f356e07c52728f8c71014bee5c5216c5.tar.xz
Vim: Silently install neobundle
-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