diff options
author | yushyin <yushyin@saga> | 2016-04-08 14:51:06 +0200 |
---|---|---|
committer | yushyin <yushyin@saga> | 2016-04-08 14:51:06 +0200 |
commit | cfc47552f356e07c52728f8c71014bee5c5216c5 (patch) | |
tree | ee113e5f787143241856b81c2b7765283c9544df /vim/vimrc | |
parent | f28b932e16c17a21b68a4a96bc9aa2ab8c7d309c (diff) | |
download | dotfiles-cfc47552f356e07c52728f8c71014bee5c5216c5.tar.gz dotfiles-cfc47552f356e07c52728f8c71014bee5c5216c5.tar.xz |
Vim: Silently install neobundle
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |