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