From 80a5b8b523ee0bdb39cb40e4e08429a56e406415 Mon Sep 17 00:00:00 2001 From: Massaki Archambault Date: Thu, 6 Dec 2018 19:30:53 -0500 Subject: [PATCH] fix post-install ordering --- scripts/post-install.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/scripts/post-install.sh b/scripts/post-install.sh index 5cf45e0..8826d7e 100644 --- a/scripts/post-install.sh +++ b/scripts/post-install.sh @@ -1,13 +1,14 @@ #!/bin/bash -# install vim plugins -vim -E +"call dein#update()" +"qall!" /dev/null &>/dev/null +# run units +systemctl --user daemon-reload +systemctl --user enable --now tmux.service +systemctl --user enable --now mpv.service # install tmux plugins tmux run-shell ~/.tmux/plugins/tpm/bin/install_plugins tmux run-shell ~/.tmux/plugins/tpm/bin/clean_plugins -systemctl --user daemon-reload -systemctl --user enable --now tmux.service -systemctl --user enable --now mpv.service +# install vim plugins +vim -E +"call dein#update()" +"qall!" /dev/null &>/dev/null