From 7a183431527ea50e345caa62fb5b729aa3964891 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 14 Apr 2023 07:42:50 +0200 Subject: [PATCH] feat(fish): add setup script for fisher --- setup/fisher.sh | 10 ++++++++++ setup/init.sh | 4 ++++ 2 files changed, 14 insertions(+) create mode 100644 setup/fisher.sh diff --git a/setup/fisher.sh b/setup/fisher.sh new file mode 100644 index 0000000..eec6600 --- /dev/null +++ b/setup/fisher.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher + +fisher install jethrokuan/z +fisher install edc/bass +fisher install jorgebucaran/replay.fish +fisher install jorgebucaran/autopair.fish +fisher install gazorby/fish-abbreviation-tips + diff --git a/setup/init.sh b/setup/init.sh index d18a0b7..10729e5 100755 --- a/setup/init.sh +++ b/setup/init.sh @@ -11,6 +11,10 @@ xcode-select --install echo "Installing TMUX Plugin Manager" git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm +# Fish Plugin Manager +echo "Installing Fish Plugin Manager" +source ./fisher.sh + # Homebrew if test ! $(which brew); then echo "Installing Homebrew"