From a642d2fdb16a098066a6b61ca9c11620cbefb3e0 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 17 Dec 2024 22:29:34 +0100 Subject: Update fzf completion to work with newest fzf --- runcoms/zshrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'runcoms') diff --git a/runcoms/zshrc b/runcoms/zshrc index 5d51c56..068e2be 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -39,9 +39,7 @@ export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_ export GPG_TTY=$(tty) # FZF Config -[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh -[ -f /usr/share/doc/fzf/examples/key-bindings.zsh ] && source /usr/share/doc/fzf/examples/key-bindings.zsh -[ -f /usr/share/doc/fzf/examples/completion.zsh ] && source /usr/share/doc/fzf/examples/completion.zsh +[ -x "$(command -v fzf)" ] && source <(fzf --zsh) export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' -- cgit