From a97e2b6e7a73eccc1e7866e93f0ad5ded6ef1003 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 17 May 2023 08:55:38 -0500 Subject: [PATCH] added fzf manual install support --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index deb5940..c41e842 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -175,3 +175,6 @@ #zsh completions, if it exists. testPath=$(find /usr/share -path '*fzf/*completion.zsh' -print -quit 2> /dev/null) [ -f "$testPath" ] && source $testPath + #if it was installed using git, can just source the one file: + testPath="$HOME/.fzf.zsh" + [ -f "$testPath" ] && source $testPath