diff --git a/zsh/.zshrc.symlink b/zsh/.zshrc.symlink index f1b4f85..0836009 100644 --- a/zsh/.zshrc.symlink +++ b/zsh/.zshrc.symlink @@ -43,12 +43,16 @@ unset config_files export STARSHIP_CONFIG=$DOT/zsh/starship.toml eval "$(starship init zsh)" -# Zsh Syntax Highlighting -source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh - # Zsh Autosuggestions source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh +# The Fuck +eval "$(thefuck --alias)" + +# Zsh Syntax Highlighting +# Must go last!!! +source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh + # Herd injected PHP binary. export PATH="/Users/marley/Library/Application Support/Herd/bin/":$PATH diff --git a/zsh/install.sh b/zsh/install.sh index 6a6a448..e0f6a85 100755 --- a/zsh/install.sh +++ b/zsh/install.sh @@ -8,3 +8,4 @@ brew_install "FiraCode Nerd Font" "font-fira-code-nerd-font" "" "homebrew/cask-f brew_install "Starship Prompt" "starship" brew_install "Zsh Syntax Highlighting" "zsh-syntax-highlighting" brew_install "Zsh Autosuggestions" "zsh-autosuggestions" +brew_install "The Fuck" "thefuck"