diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config.org b/config.org index 0eae525..11309e7 100644 --- a/config.org +++ b/config.org @@ -240,6 +240,10 @@ For some frustrating reason, emacs does not respect fontconfig font settings. W #+begin_src elisp (dolist (charset '(han cjk-misc)) (set-fontset-font t charset (font-spec :family "Noto Sans CJK SC"))) + + ;; This font is traditional... + (dolist (charset '(han cjk-misc)) + (set-fontset-font t charset (font-spec :family "HanWang KaiBold-Gb5"))) #+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! |