Files
omarchy/default/bash/init

17 lines
410 B
Plaintext
Raw Permalink Normal View History

2025-06-01 11:56:03 +02:00
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
2025-06-11 14:34:16 +02:00
if [[ -f /usr/share/fzf/key-bindings.bash ]]; then
source /usr/share/fzf/key-bindings.bash
2025-06-01 11:56:03 +02:00
fi
fi