From e83d3cf36092b0a278e7276cb3aa2bd6d7de2f5b Mon Sep 17 00:00:00 2001 From: PieckA Date: Fri, 24 May 2024 22:54:33 +0200 Subject: [PATCH] addet fisher --- config.fish | 2 ++ functions/c_fisher.fish | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/config.fish b/config.fish index d354cb4..579bd08 100644 --- a/config.fish +++ b/config.fish @@ -88,6 +88,8 @@ end check_fisher +plugins_fisher + # ──────────────────────────< END | distro/packagemanger detection >────────────────────────── # ─< colorized ls >───────────────────────────────────────────────────────────────────────── diff --git a/functions/c_fisher.fish b/functions/c_fisher.fish index 843195f..26a74ae 100644 --- a/functions/c_fisher.fish +++ b/functions/c_fisher.fish @@ -10,3 +10,9 @@ if [[ ! -e $HOME/.config/fish/functions/fisher.fish ]] curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher end end + +function plugins_fisher + if command -v fisher >/dev/null 2>&1 + fisher install PatrickF1/fzf.fish + end +end