chore: move scripts that belong together next to each other

This commit is contained in:
Stefan Imhoff
2024-08-10 08:10:36 +02:00
committed by GitHub
parent e903a81640
commit 3e18171fd3

View File

@@ -64,13 +64,6 @@ fi
echo "Restoring Homebrew packages..." echo "Restoring Homebrew packages..."
./bin/homebrew-restore ./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 # Tmux plugin manager
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
~/.tmux/plugins/tpm/scripts/install_plugins.sh >/dev/null 2>&1 ~/.tmux/plugins/tpm/scripts/install_plugins.sh >/dev/null 2>&1
@@ -104,6 +97,13 @@ nvim --headless "+Lazy! sync" +qa
yabai --start-service yabai --start-service
skhd --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 # Change default shell to fish
echo "Changing default shell to fish" echo "Changing default shell to fish"
run_with_sudo chsh -s $(which fish) $USER run_with_sudo chsh -s $(which fish) $USER