feat(setup-mac.sh): add installation checks and commands for WezTerm and Fira Code Nerd Font to enhance terminal setup on macOS

This commit is contained in:
David Ibia
2024-07-28 02:15:44 +01:00
parent 27f43d975d
commit e53c7f28e6

View File

@@ -71,6 +71,22 @@ else
brew install neovim
fi
# Check if WezTerm is installed
if command -v wezterm &> /dev/null; then
echo "WezTerm is installed."
else
echo "WezTerm is not installed."
echo "Installing WezTerm..."
brew install wezterm
fi
# Ensure fira font is installed
brew install font-fira-code-nerd-font
# Check if Zsh is installed
if command -v zsh &> /dev/null; then