Files
omakub/defaults/bash/init
David Heinemeier Hansson 335c3def38 Add fzf completions
2024-07-03 14:14:35 +02:00

13 lines
293 B
Plaintext

if command -v mise &> /dev/null; then
eval "$(mise activate bash)"
fi
if command -v zoxide &> /dev/null; then
eval "$(zoxide init bash)"
fi
if command -v fzf &> /dev/null; then
source /usr/share/bash-completion/completions/fzf
source /usr/share/doc/fzf/examples/key-bindings.bash
fi