add fisher install bootstrap script

This commit is contained in:
Sloane Perrault 2022-07-17 10:08:47 -04:00
parent 935c876bee
commit dc364bb196

View file

@ -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