From 2364eb5ee3b0150cf07563c821249ab21404dfc2 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Fri, 8 Mar 2024 15:58:59 +0100 Subject: [PATCH] Fix lazy sync in nvim. --- _cli/zsh/aliases.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_cli/zsh/aliases.zsh b/_cli/zsh/aliases.zsh index 94938a9..7495f55 100644 --- a/_cli/zsh/aliases.zsh +++ b/_cli/zsh/aliases.zsh @@ -46,7 +46,7 @@ fi function ud() { wd dots && git pull for i in $XDG_CONFIG_HOME/nvim ~/.local/git/zsh_modules/*; do sh -c "cd $i && git pull"; done - nvim -c "Lazy update" + nvim -c "lua require('lazy').sync({wait = true})" rm -rf ~/go cd }