dotfiles/.bashrc.d/30-fzf.bash
2025-01-24 10:01:12 +01:00

16 lines
392 B
Bash
Executable file

#! /bin/bash
# Setup fzf
# ---------
if [[ ! "$PATH" == *$HOME/.vim/plugged/fzf/bin* ]]; then
export PATH="$PATH:$HOME/.vim/plugged/fzf/bin"
fi
# Auto-completion
# ---------------
[[ $- == *i* ]] && source "$HOME/.vim/plugged/fzf/shell/completion.bash" 2> /dev/null
# Key bindings
# ------------
source "$HOME/.vim/plugged/fzf/shell/key-bindings.bash"
bind -x '"\C-p":"fzf-file-widget"'