Install JetBrains Mono Nerd Font on macOS

This commit is contained in:
2026-03-29 20:32:12 +02:00
parent 62514f6844
commit d17f325ba8
2 changed files with 18 additions and 0 deletions
+16
View File
@@ -105,6 +105,7 @@ apply_dotfiles() {
if [ "$(uname -s)" = "Darwin" ]; then
install_karabiner_config
fi
install_fonts
install_kitty_icon
install_tmux_plugins
install_powerlevel10k
@@ -188,6 +189,21 @@ install_kitty_icon() {
echo
}
install_fonts() {
if [ "$(uname -s)" != "Darwin" ]; then
return
fi
if ! command_exists brew; then
skip "font installation: Homebrew is not installed."
return
fi
echo "${BLUE}Installing fonts...${RESET}"
brew install --cask font-jetbrains-mono-nerd-font
echo
}
install_tmux_plugins() {
echo "${BLUE}Installing tmux plugins...${RESET}"