Fix fzf paths.

This commit is contained in:
Gabriel Ebner 2024-08-13 18:24:56 -07:00
parent adbe344ea6
commit 518c5b9287
1 changed files with 6 additions and 1 deletions

7
bashrc
View File

@ -31,4 +31,9 @@ if type -t __git_complete >/dev/null; then
__git_complete gp _git_push
fi
test -f /usr/share/fzf/shell/key-bindings.bash && . /usr/share/fzf/shell/key-bindings.bash
for fn in /usr/share/fzf/shell/key-bindings.bash /usr/share/fzf/key-bindings.bash; do
if test -f $fn; then
. $fn
break
fi
done