# fzf.bash
# Setup fzf
# ---------
_ble_contrib_fzf_base=/path/to/fzf-directory
if [[ ! "$PATH" == *"$_ble_contrib_fzf_base/bin"* ]]; then
export PATH="${PATH:+${PATH}:}/path/to/fzf-directory/bin"
should be
_ble_contrib_fzf_base=/path/to/fzf-directory
if [[ ! "$PATH" == *"$_ble_contrib_fzf_base/bin"* ]]; then
export PATH="${PATH:+${PATH}:}$_ble_contrib_fzf_base/bin"
fi
should be