Files
dotfiles/scripts/install.d/02-fish.sh
2021-04-16 00:26:07 +01:00

11 lines
280 B
Bash
Executable File

#!/usr/bin/env bash
fish --version
fisher_location="$XDG_CONFIG_HOME/fish/functions/fisher.fish"
if ! [ -f $fisher_location ]; then
fish -c "curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher"
fi
fish -c "fisher update"
fish -c "fisher --version"