From 7ab407b34d0bea80e5d76e8eeaef1ffc7a9aee31 Mon Sep 17 00:00:00 2001 From: Preston Cabe Date: Tue, 5 Jul 2022 11:30:14 -0400 Subject: [PATCH] Update FZF paths # 50-character subject line # # 72-character wrapped longer description. This should answer: # # * Why was this change necessary? # * How does it address the problem? # * Are there any side effects? # # Include a link to the ticket, if any. # # Add co-authors if you worked on this code with others: # # Co-authored-by: Full Name # Co-authored-by: Full Name --- fzf.zsh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fzf.zsh b/fzf.zsh index 67e3fb4..bcae1b9 100644 --- a/fzf.zsh +++ b/fzf.zsh @@ -1,13 +1,13 @@ # Setup fzf # --------- -if [[ ! "$PATH" == */Users/pcabe/.fzf/bin* ]]; then - export PATH="${PATH:+${PATH}:}/Users/pcabe/.fzf/bin" +if [[ ! "$PATH" == */usr/local/opt/fzf/bin* ]]; then + export PATH="${PATH:+${PATH}:}/usr/local/opt/fzf/bin" fi # Auto-completion # --------------- -[[ $- == *i* ]] && source "/Users/pcabe/.fzf/shell/completion.zsh" 2> /dev/null +[[ $- == *i* ]] && source "/usr/local/opt/fzf/shell/completion.zsh" 2> /dev/null # Key bindings # ------------ -source "/Users/pcabe/.fzf/shell/key-bindings.zsh" +source "/usr/local/opt/fzf/shell/key-bindings.zsh"