From fa4d1907e022906b8995ea8f267808a54ab6b422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Sun, 9 Jan 2022 13:38:13 +0100 Subject: [PATCH] Get rid of error if `thefuck` is not installed --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 87ea32e..c725632 100644 --- a/zshrc +++ b/zshrc @@ -37,7 +37,7 @@ export YSU_MESSAGE_POSITION="after" [ -f "$HOME/zsh/aliasrc" ] && source "$HOME/zsh/aliasrc" # Initialize `thefuck` -eval $(thefuck --alias) +eval $(thefuck --alias) 2>/dev/null # Load ; should be last. source $HOME/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null