From a98f32f163c492800cdf80928c6a52e8d14752b7 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Mon, 13 Dec 2021 12:43:30 +0100 Subject: [PATCH] chore(vim): add line to automatically install plugins --- .dotbot.conf.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.dotbot.conf.yaml b/.dotbot.conf.yaml index 515561c..d5f292b 100644 --- a/.dotbot.conf.yaml +++ b/.dotbot.conf.yaml @@ -2,7 +2,7 @@ link: relink: true -- clean: ['~'] +- clean: ["~"] - link: ~/.ack: ack @@ -25,6 +25,12 @@ ~/.zshrc: zshrc - shell: - - [git submodule update --init --recursive, Installing submodules] - - [~/.tmux/plugins/tpm/scripts/install_plugins.sh >/dev/null 2>&1, Installing tmux plugins] - - [nvim --headless -c "lua lsp_install_sync()" -c "quitall"] + - [git submodule update --init --recursive, Installing submodules] + - [ + ~/.tmux/plugins/tpm/scripts/install_plugins.sh >/dev/null 2>&1, + Installing tmux plugins, + ] + - [ + nvim -u ~/.config/nvim/init.vim +PlugUpgrade +PlugInstall +PlugClean +qall, + ] + - [nvim --headless -c "lua lsp_install_sync()" -c "quitall"]