mirror of
https://github.com/boxpositron/absolute-dotfiles.git
synced 2026-02-28 03:30: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
|
brew install neovim
|
||||||
fi
|
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
|
# Check if Zsh is installed
|
||||||
|
|
||||||
if command -v zsh &> /dev/null; then
|
if command -v zsh &> /dev/null; then
|
||||||
|
|||||||
Reference in New Issue
Block a user