diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.org b/config.org index 62ff342..0c3886e 100644 --- a/config.org +++ b/config.org @@ -234,8 +234,8 @@ My current favourite font is sn pro, which feels like comic sans for grown ups. 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. #+begin_src elisp -(dolist (charset '(han cjk-misc)) - (set-fontset-font t charset (font-spec :family "Noto Sans CJK SC"))) + (dolist (charset '(han cjk-misc)) + (set-fontset-font t charset (font-spec :family "Noto Sans CJK SC"))) #+end_src Similar to the above, we have to manually set the font we want to be used for emoji. I like the cute style of the emoji in fsd emoji, but it doesn't have very good coverage, so we also set noto emoji as the backup. Note that noto emoji is not the same as noto color emoji, which uses coloured emoji. That's clearly against the vibe of this emacs! |