From 7bebd2cdd8bbd8c15c2886879df013079f3e6d61 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 13 Jun 2025 11:40:21 +0200 Subject: emacs: Fix fonts on MacOS --- .config/emacs/modules/mm-theme.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/emacs/modules/mm-theme.el b/.config/emacs/modules/mm-theme.el index 95c96c9..90b89ba 100644 --- a/.config/emacs/modules/mm-theme.el +++ b/.config/emacs/modules/mm-theme.el @@ -16,7 +16,9 @@ "The default monospace font. This is a plist containing a font name, -weight, and -height.") -(defvar mm-theme-proportional-font '("OpenSans" :weight regular :height 162) +(defvar mm-theme-proportional-font + `(,(if mm-darwin-p "Microsoft Sans Serif" "OpenSans") + :weight regular :height 162) "The default proportional font. This is a plist containing a font name, -weight, and -height.") -- cgit v1.2.3