From 30d1fa8bcfaeeaff21d3716b91fb2cf6f4f44f9d Mon Sep 17 00:00:00 2001 From: Dict Xiong Date: Sun, 6 Nov 2022 13:25:48 +0800 Subject: [PATCH] vim quiet install --- install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install.sh b/install.sh index db979ec..5ac20c8 100755 --- a/install.sh +++ b/install.sh @@ -165,9 +165,7 @@ install_vim_vundle(){ fmt_note "installing vim vundle ..." git clone https://gitee.com/dictxiong/Vundle.vim "$VIM_VUNDLE" fmt_note "initializing vim plugins ..." - if [[ -z "$DFS_NO_COMPILE" ]]; then - vim +PluginInstall +qall - fi + echo | vim +PluginInstall +qall fi }