dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 5fff3e19d6be2b402f083f59f8e86a252c55934b
parent 3fe7e8231a71c7d3241552aee5ce75b21925c118
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed, 21 Aug 2019 10:55:16 +0200

Source system install of fzf for bash

Diffstat:
M.bashrc | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -38,8 +38,10 @@ esac [ -r /usr/share/bash-completion/bash_completion ] && \ . /usr/share/bash-completion/bash_completion -# shellcheck source=/dev/null -[ -f ~/.fzf.bash ] && source ~/.fzf.bash +[ -f /usr/share/fzf/key-bindings.bash ] && \ + . /usr/share/fzf/key-bindings.bash ] || : +[ -f /usr/share/doc/fzf/key-bindings.bash ] && \ + . /usr/share/doc/fzf/key-bindings.bash ] || : # shellcheck source=/dev/null . ~/.commands.sh