mirror of
https://github.com/boxpositron/absolute-dotfiles.git
synced 2026-02-28 11:40:37 +00:00
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:
16
setup-mac.sh
16
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
|
||||
|
||||
Reference in New Issue
Block a user