From 647146a76a5ac46d12c24ad4d258a67979b38444 Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Wed, 1 Nov 2017 12:51:35 +0100 Subject: [PATCH] Install vim plugins after install --- install_files.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install_files.py b/install_files.py index 08333c6..454ac71 100755 --- a/install_files.py +++ b/install_files.py @@ -56,6 +56,8 @@ def install_vim(pdotfiles, force=False): check_call( ["git", "clone", "https://github.com/VundleVim/Vundle.vim.git", pvundle.as_posix()]) + print("Install vim plugins") + check_call("vim -X -- +PluginInstall +qall") def install_tmux(pdotfiles, force=False):