From 3e18171fd3ef1fdf4252ece3938ca7c9e805ea02 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff <5535+kogakure@users.noreply.github.com> Date: Sat, 10 Aug 2024 08:10:36 +0200 Subject: [PATCH] chore: move scripts that belong together next to each other --- setup.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/setup.sh b/setup.sh index 668c3e6..2a0f05f 100755 --- a/setup.sh +++ b/setup.sh @@ -64,13 +64,6 @@ fi echo "Restoring Homebrew packages..." ./bin/homebrew-restore -# Setup fish shell as default shell -echo "Configuring fish as default shell" -if ! command -v fish &>/dev/null; then - echo "Fish shell not found. Installing fish..." - brew install fish -fi - # Tmux plugin manager git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm ~/.tmux/plugins/tpm/scripts/install_plugins.sh >/dev/null 2>&1 @@ -104,6 +97,13 @@ nvim --headless "+Lazy! sync" +qa yabai --start-service skhd --start-service +# Setup fish shell as default shell +echo "Configuring fish as default shell" +if ! command -v fish &>/dev/null; then + echo "Fish shell not found. Installing fish..." + brew install fish +fi + # Change default shell to fish echo "Changing default shell to fish" run_with_sudo chsh -s $(which fish) $USER