emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit 0a3671243714986d75899fce61f159f1a0ce08a4
parent 6903f1abf5fe371226acbf196fd39a1937ae0564
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sun, 24 Jun 2018 10:32:43 -0500

Only use Latin font for Latin and use CJK fonts for kanbun symbols.

Diffstat:
MREADME.org | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.org b/README.org
@@ -166,11 +166,11 @@ Use ~C-u C-x =~ to examine the font used for a specific character and use
                       nil 'prepend)
     ;; Latin font.
     ;; Only specify size here to allow text-scale-adjust work on other fonts.
-    (set-fontset-font user/standard-fontset 'unicode
+    (set-fontset-font user/standard-fontset 'latin
                       (font-spec :family user/latin-font :size user/font-size)
                       nil 'prepend)
     ;; CJK font.
-    (dolist (charset '(kana han cjk-misc hangul bopomofo))
+    (dolist (charset '(kana han cjk-misc hangul kanbun bopomofo))
       (set-fontset-font user/standard-fontset charset
                         (font-spec :family user/cjk-font)
                         nil 'prepend))