From e53c7f28e68741a0d376bf19d0f647b9404dd931 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 28 Jul 2024 02:15:44 +0100 Subject: [PATCH] feat(setup-mac.sh): add installation checks and commands for WezTerm and Fira Code Nerd Font to enhance terminal setup on macOS --- setup-mac.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/setup-mac.sh b/setup-mac.sh index ac3da4a..114e986 100755 --- a/setup-mac.sh +++ b/setup-mac.sh @@ -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