wip: dir organisation, script cleanup

This commit is contained in:
Andrejus
2021-04-09 22:04:33 +01:00
parent 576c73352c
commit 18689abd73
59 changed files with 508 additions and 647 deletions

15
scripts/install/02-fish.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
if not_installed "fish"; then
add_ppa "fish-shell/release-3"
update
install fish
fi
fish --version
fisher_location="$HOME/.config/fish/functions/fisher.fish"
if ! [ -f "$fisher_location" ]; then
curl https://git.io/fisher --create-dirs -sLo "$fisher_location"
fish -c "fisher install jorgebucaran/fisher"
fi
fish -c "fisher --version"