improve fisher & atuin installation text

This commit is contained in:
2024-03-27 19:22:21 -06:00
parent 5dad2e9bec
commit edcd150662

View File

@@ -1,10 +1,12 @@
# if fisher is not installed, install it # if fisher is not installed, install it
if not functions -q fisher if not functions -q fisher
curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher
end if not functions -q fisher
if functions -q fisher echo "fisher failed to install"
fisher install IlanCosman/tide@v6 else
fisher install PatrickF1/fzf.fish fisher install IlanCosman/tide@v6
fisher install PatrickF1/fzf.fish
end
end end
fish_add_path ~/.webman/bin/ fish_add_path ~/.webman/bin/
@@ -12,7 +14,9 @@ fish_add_path ~/.webman/bin/
# if atuin is not installed, install it # if atuin is not installed, install it
if not type -q atuin if not type -q atuin
bash (curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh | psub) bash (curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh | psub)
end if not type -q atuin
if type -q atuin echo "atuin failed to install"
atuin import auto else
end atuin import auto
end
end