diff options
author | Alan Pearce | 2016-09-09 16:06:46 +0200 |
---|---|---|
committer | Alan Pearce | 2016-09-09 16:06:46 +0200 |
commit | 1333da407a8ab2a898d006411384d8e08c8e3481 (patch) | |
tree | 7c5694aa280a6bdc888f65cd2465aedf029dcd2d /tag-emacs/emacs.d/init.org | |
parent | 62a8fbc7892d53ee81caaa8361ca6407976245f0 (diff) | |
download | nixfiles-1333da407a8ab2a898d006411384d8e08c8e3481.tar.lz nixfiles-1333da407a8ab2a898d006411384d8e08c8e3481.tar.zst nixfiles-1333da407a8ab2a898d006411384d8e08c8e3481.zip |
Emacs: Always antialias (vector) fonts on OSX
I don’t need to disable anti-aliasing for fonts on OSX when using a bitmap font. This way, it’s easier if I want to switch fonts.
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 21228f41..98314470 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -225,7 +225,7 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource (let ((displays (string-to-number (shell-command-to-string "system_profiler SPDisplaysDataType | grep \"Online: Yes\" | wc -l")))) (if (eq displays 1) (ap/set-fonts "PT Mono" 12 "Lucide Grande" 12 t) - (ap/set-fonts "ProggyTiny" 11 "Lucida Grande" 12 nil)))) + (ap/set-fonts "ProggyTiny" 11 "Lucida Grande" 12 t)))) ((eq window-system 'x) (ap/set-fonts "Source Code Pro" 10 "Input Sans" 10 t)))) |