diff options
author | Thomas Voss <thomas.voss@humanwave.nl> | 2025-06-13 11:40:21 +0200 |
---|---|---|
committer | Thomas Voss <thomas.voss@humanwave.nl> | 2025-06-13 11:40:21 +0200 |
commit | 7bebd2cdd8bbd8c15c2886879df013079f3e6d61 (patch) | |
tree | 45dad7c7a16be87b51b0076801d144550cec1579 | |
parent | e6c464aadf7e58ceaae3b3058b6a2014ea7d0455 (diff) |
emacs: Fix fonts on MacOS
-rw-r--r-- | .config/emacs/modules/mm-theme.el | 4 |
1 files changed, 3 insertions, 1 deletions
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.") |