From 48623b6ab6c999909d760de87634395cc61314fc Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 14 Feb 2025 14:29:07 -0800 Subject: [PATCH] Install fzf as a helper since some plugins depend on it --- install-helpers.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install-helpers.py b/install-helpers.py index 113eefa..2c47bd1 100755 --- a/install-helpers.py +++ b/install-helpers.py @@ -397,6 +397,16 @@ def main(): # Release gitter is required for some tools install_release_gitter() + # Install fzf + maybe_release_gitter(fzf=[ + "--git-url", + "https://github.com/junegunn/fzf", + "--extract-files", + "fzf", + "fzf-{version}-{system}_{arch}.tar.gz", + os.path.expanduser("~/bin/"), + ]) + # Keep a clean PYTHONPATH os.environ["PYTHONPATH"] = ""