mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-17 04:24:20 +01:00
17 lines
436 B
Plaintext
17 lines
436 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
|
|
if [[ -f /usr/share/bash-completion/completions/fzf ]]; then
|
|
source /usr/share/bash-completion/completions/fzf
|
|
fi
|
|
if [[ -f /usr/share/doc/fzf/examples/key-bindings.bash ]]; then
|
|
source /usr/share/doc/fzf/examples/key-bindings.bash
|
|
fi
|
|
fi
|