Skip to content

Commit

Permalink
Update FZF paths
Browse files Browse the repository at this point in the history
# 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 <email@example.com>
# Co-authored-by: Full Name <email@example.com>
  • Loading branch information
prestoncabe committed Jul 5, 2022
1 parent 693548a commit 7ab407b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fzf.zsh
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 7ab407b

Please sign in to comment.