From c13e14080c3062db39a3e17ec47650deadd2e3e5 Mon Sep 17 00:00:00 2001 From: edi <74437706+vzze@users.noreply.github.com> Date: Sun, 29 Jan 2023 20:49:56 +0200 Subject: [PATCH] Add Lazy, a Neovim plugin manager (#326) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix upgrade order of (n)vim plugins * treesitter should use the synchronous cmd * add lazy pkg manager for neovim * fix lazy cmd --------- Co-authored-by: Thomas Schönauer <37108907+DottoDev@users.noreply.github.com> --- src/steps/upgrade.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/steps/upgrade.vim b/src/steps/upgrade.vim index a901f2f5..0c730366 100644 --- a/src/steps/upgrade.vim +++ b/src/steps/upgrade.vim @@ -33,6 +33,11 @@ if exists(":PaqUpdate") PaqUpdate endif +if exists(":Lazy") + echo "Lazy Update" + +Lazy! sync +endif + function! UpdateCoCAndTS() if exists(":CocUpdateSync") echo "CocUpdateSync"