mirror of
https://github.com/bvanroll/my-old-dotfiles.git
synced 2025-08-29 03:52:48 +00:00
14 lines
300 B
Bash
14 lines
300 B
Bash
# Setup fzf
|
|
# ---------
|
|
if [[ ! "$PATH" == */usr/local/opt/fzf/bin* ]]; then
|
|
export PATH="${PATH:+${PATH}:}/usr/local/opt/fzf/bin"
|
|
fi
|
|
|
|
# Auto-completion
|
|
# ---------------
|
|
[[ $- == *i* ]] && source "~/.fzf_completion.zsh" 2> /dev/null
|
|
|
|
# Key bindings
|
|
# ------------
|
|
source "~/.fzf_key-bindings.zsh"
|