blob: 76e3dde670fd994e4a736634e8120867e048955a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# vi:syntax=sh
if [ -f /usr/share/fzf/completion.bash ]; then
source /usr/share/fzf/completion.bash
fi
if [ -f /usr/share/fzf/key-bindings.bash ]; then
source /usr/share/fzf/key-bindings.bash
fi
export FZF_COMPLETION_TRIGGER='++'
|