From dc364bb196ad9d6fd5ac05bc5b89c80d4b9ed465 Mon Sep 17 00:00:00 2001 From: Sloane Perrault Date: Sun, 17 Jul 2022 10:08:47 -0400 Subject: [PATCH] add fisher install bootstrap script --- .config/yadm/bootstrap.d/003_fisher | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 .config/yadm/bootstrap.d/003_fisher diff --git a/.config/yadm/bootstrap.d/003_fisher b/.config/yadm/bootstrap.d/003_fisher new file mode 100755 index 0000000..e87efb7 --- /dev/null +++ b/.config/yadm/bootstrap.d/003_fisher @@ -0,0 +1,8 @@ +#!/usr/bin/env fish + +if type -q fisher + echo "fisher already installed" +else + echo "installing fisher" + curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher +end