From 8cb3309e93527749194b0837166a0494c935c94a Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Thu, 21 Sep 2023 19:13:51 +0200 Subject: [PATCH] Fix lazy sync. --- _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 b459047..4a0f9e7 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_DATA_HOME/repos/zsh_modules/*; do sh -c "cd $i && git pull"; done - nvim --headless -c "Lazy sync" -c "q" + nvim -c "lua require('lazy').sync({wait = true})" -c qa rm -rf ~/go cd }