diff options
-rw-r--r-- | emacs/init.el | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/emacs/init.el b/emacs/init.el index 76a6ac9..da2ec6c 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -135,23 +135,19 @@ Values: `desktop', `server', `laptop'") "Consolas"))) (variable-face "Segoe UI") (default-font (concat mono-face "-" (number-to-string font-size)))) - (when mono-face - (set-face-font 'default default-font) - (set-face-font 'fixed-pitch default-font)) - (when variable-face - (set-face-font 'variable-pitch (concat variable-face "-" - (number-to-string (1+ font-size))))))) - ((eq window-system 'ns) + (when mono-face + (add-to-list 'default-frame-alist `(font . ,default-font)) + (set-face-font 'fixed-pitch default-font)) + (when variable-face + (set-face-font 'variable-pitch (concat variable-face "-" + (number-to-string (1+ font-size))))))) + ((eq system-type 'darwin) (let* ((font-size 14) - (font-list (font-family-list)) - (mono-face (cond - ((member "Droid Sans Mono" font-list) - "Droid Sans Mono"))) + (mono-face "Droid Sans Mono") (variable-face "Helvetica Neue") (default-font (concat mono-face "-" (number-to-string font-size)))) - (when mono-face - (set-face-font 'default default-font) - (set-face-font 'fixed-pitch default-font)))))) + (when mono-face + (add-to-list 'default-frame-alist `(font . ,default-font))))))) (with-elapsed-timer "Setting up font styles" (let* ((font-height (face-attribute 'default :height)) |