mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
9 lines
290 B
Bash
Executable file
9 lines
290 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -r /usr/share/fzf/key-bindings.bash ] && . /usr/share/fzf/key-bindings.bash
|
|
[ -r /usr/share/fzf/completion.bash ] && . /usr/share/fzf/completion.bash
|
|
|
|
if command -v fzf-share >/dev/null; then
|
|
source "$(fzf-share)/key-bindings.bash"
|
|
source "$(fzf-share)/completion.bash"
|
|
fi
|