diff options
author | noa@gaiwan.org | 2024-06-12 22:25:32 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-12 22:25:32 +0000 |
commit | ba939d69aa0b52d107b5ddf1feee0b9485a718b7 (patch) | |
tree | cc9cc95db42a43d08634d824560bfa5e1ff6f6b5 /emacs | |
parent | df723dcc913456f8e4e57182fc202d76dcf52442 (diff) |
Add information on font choices
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 75598ca..6ad88ef 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -967,6 +967,8 @@ and when JID is not in `jabber-activity-banned'." mu4e-headers-mode-hook )) ) + +;; My current favourite font is sn pro, which feels like comic sans for grown ups. It's friendly but consistent and well thought out. However, it's also a proportional font, which obviously is the right way to do things, but emacs is very old and comes from a time before the innovation of legibility. As a result, there are some things that require a monospaced font, so i set one here. I chose go mono for two reasons: the first is because i think it looks really nice; the second is because it has serifs and is very visually distinct from sn pro, so i can notice and shame those buffers which require a fixed width font to operate properly. (custom-set-faces '(fixed-pitch ((t (:family "Go Mono" :height 110)))) '(variable-pitch ((t (:family "SN Pro" :height 110)))) |