16 lines
646 B
Bash
16 lines
646 B
Bash
# Setup fzf
|
|
# ---------
|
|
local _completionFiles=(
|
|
'/usr/share/fzf/completion.zsh' # Arch
|
|
'/usr/share/fzf/key-bindings.zsh' # Arch
|
|
'/usr/share/doc/fzf/examples/completion.zsh' # Debian
|
|
'/usr/share/doc/fzf/examples/key-bindings.zsh' # Debian
|
|
'/usr/share/fzf/shell/completion.zsh' # openSUSE
|
|
'/usr/share/fzf/shell/key-bindings.zsh' # openSUSE
|
|
)
|
|
|
|
# Silently source whichever files are valid paths
|
|
for file in ${_completionFiles[@]}; do
|
|
[[ -f "${file}" ]] && source "${file}"
|
|
done
|