diff options
author | Alan Pearce | 2014-05-31 17:45:54 +0100 |
---|---|---|
committer | Alan Pearce | 2014-05-31 17:45:54 +0100 |
commit | 39cf1dc66cd86152b3f61ea39e32238c91709ff7 (patch) | |
tree | f434bed408909ec6e4463bf68696c6dc06afd3da | |
parent | fbf0bb2fb22697ea5135542837dcb12181817321 (diff) | |
download | nixfiles-39cf1dc66cd86152b3f61ea39e32238c91709ff7.tar.lz nixfiles-39cf1dc66cd86152b3f61ea39e32238c91709ff7.tar.zst nixfiles-39cf1dc66cd86152b3f61ea39e32238c91709ff7.zip |
Emacs: Use fonts from the system on OSX
-rw-r--r-- | tag-emacs/emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index cc1048f9..e357e992 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -99,7 +99,7 @@ ((eq window-system 'w32) (ap/set-fonts "Consolas" "Segoe UI" 10)) ((eq system-type 'darwin) - (ap/set-fonts "Droid Sans Mono" "Helvetica_Neue" 14)))) + (ap/set-fonts "Menlo" "Helvetica" 14)))) ;;;; Autosaves & Backups (let ((backup-dir (expand-file-name "~/.emacs.d/backups/"))) |