diff options
author | noa@gaiwan.org | 2024-07-28 08:19:16 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-07-28 08:19:16 +0000 |
commit | 41efdcf21b46f107c71b07bd708ab76051289bb1 (patch) | |
tree | c78b329aa309b602927743048ea2f68d7f712091 /config.org | |
parent | f7d2e9e4459270c568d670c449ad92cc5a46063e (diff) |
Update font choices
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config.org b/config.org index c708403..83b9fa8 100644 --- a/config.org +++ b/config.org @@ -182,10 +182,9 @@ My current favourite font is sn pro, which feels like comic sans for grown ups. #+begin_src elisp (custom-set-faces - '(fixed-pitch ((t (:family "Noto Sans Mono" :height 110)))) - '(variable-pitch ((t (:family "Noto Sans" :height 110)))) - ;; '(variable-pitch ((t (:family "Comic Sans MS" :height 110)))) - ) + '(default ((t (:family "Noto Sans" :height 120)))) + '(variable-pitch ((t (:family "Noto Sans" :height 120)))) + '(fixed-pitch ((t (:family "Noto Sans Mono" :height 120))))) #+end_src For some frustrating reason, emacs does not respect fontconfig font settings. What this means in practice is that emacs by default draws cjk characters with the korean variant. Luckily emacs has its own obscure and poorly documented way of doing things, so i can iterate over the relevant charsets and set the font specifically for those characters. |