From c3a4aa60873c40f1cb11c9d6dea56ea9da80c98e Mon Sep 17 00:00:00 2001 From: Elias Norrby Date: Thu, 19 Nov 2020 23:15:28 +0100 Subject: [PATCH] feat(provision): install coc extensions in post --- post-install.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/post-install.zsh b/post-install.zsh index 9a583386..17e03a15 100755 --- a/post-install.zsh +++ b/post-install.zsh @@ -22,6 +22,10 @@ if _is_callable nvim ; then _msg "-- vim-plug --" _msg "Running PlugInstall..." nvim +'PlugInstall --sync' +qall + _msg "Installing coc-nvim extensions..." + cd ~/.config/coc/extensions + npm install + cd - fi # emacs