From c08e57e25602c428e0325e43b7aec4c512c5a08d Mon Sep 17 00:00:00 2001 From: Sarthak Date: Sat, 18 Jul 2026 15:29:04 +0530 Subject: [PATCH] Fix bash fzf --- shell/.config/shell/linux | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell/.config/shell/linux b/shell/.config/shell/linux index 36ba466..20a5510 100644 --- a/shell/.config/shell/linux +++ b/shell/.config/shell/linux @@ -11,10 +11,11 @@ if command -v xclip >/dev/null 2>&1; then fi # fzf shell integration (Linux path) -[[ -f /usr/share/doc/fzf/examples/key-bindings.zsh ]] && \ - source /usr/share/doc/fzf/examples/key-bindings.zsh +# Set up fzf key bindings and fuzzy completion +eval "$(fzf --bash)" [[ -f ~/.fzf.zsh ]] && source ~/.fzf.zsh + # Zoxide (smarter cd) — in case not already initialized by bashrc if [[ -n "$ZSH_VERSION" ]]; then command -v zoxide >/dev/null && eval "$(zoxide init zsh)"