diff --git a/brew/Brewfile b/brew/Brewfile index 3f3d070..6dfbd10 100644 --- a/brew/Brewfile +++ b/brew/Brewfile @@ -23,6 +23,8 @@ brew "bat" brew "make" brew "fzf" brew "git-delta" +brew "tldr" +brew "thefuck" # Docker brew "docker" diff --git a/zsh/.zshrc b/zsh/.zshrc index b7ca02e..2f72e29 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -184,6 +184,10 @@ _fzf_comprun() { esac } +# thefuck configuration +eval $(thefuck --alias) +eval $(thefuck --alias fk) + ### List directories alias ls="eza -a --group-directories-first --icons --color=always" alias la="eza -a --group-directories-first --icons --color=always --oneline"