From 248f4be293c631f19b10dbfeb970d44644de6cfd Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sun, 9 Jan 2022 09:23:56 +0000 Subject: [PATCH] Add init of thefuck --- zshrc.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc.zsh b/zshrc.zsh index 24f57e0..b8bc35e 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -113,6 +113,11 @@ test -e ${HOME}/.iterm2_shell_integration.zsh && source ${HOME}/.iterm2_shell_in # Source the untracked `extra` file test -e $HOME/.extra && source $HOME/.extra +# Init the fuck +if type thefuck &> /dev/null; then + eval $(thefuck --alias) +fi + # Init starship prompt -- https://starship.rs eval "$(starship init zsh)"