dotfiles/.config/yadm/bootstrap.d/003_fisher

10 lines
226 B
Text
Raw Normal View History

2022-07-17 10:08:47 -04:00
#!/usr/bin/env fish
if type -q fisher
echo "fisher already installed"
else
echo "installing fisher"
2023-07-28 09:58:17 -04:00
curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source
fisher update
2022-07-17 10:08:47 -04:00
end