diff --git a/bin/bootstrap-homebrew b/bin/bootstrap-homebrew index 46e06e7..faf5628 100755 --- a/bin/bootstrap-homebrew +++ b/bin/bootstrap-homebrew @@ -56,6 +56,7 @@ main() { sshfs tccutil the_silver_searcher + thefuck tmux wget zsh diff --git a/shell/_main.sh b/shell/_main.sh index 148a70c..d4fff20 100755 --- a/shell/_main.sh +++ b/shell/_main.sh @@ -38,6 +38,7 @@ fi source "$DOTSHELL/emacs.sh" source "$DOTSHELL/git.sh" source "$DOTSHELL/tmux.sh" +source "$DOTSHELL/thefuck.sh" source "$DOTSHELL/ctags.sh" # Development diff --git a/shell/thefuck.sh b/shell/thefuck.sh new file mode 100644 index 0000000..f028e1f --- /dev/null +++ b/shell/thefuck.sh @@ -0,0 +1,7 @@ +# +# thefuck +# + +if command -v thefuck > /dev/null; then + eval "$(thefuck --alias)" +fi