summary refs log tree commit diff
path: root/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el11
1 files changed, 2 insertions, 9 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 71cfd29..61aed99 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -932,15 +932,8 @@ and when JID is not in `jabber-activity-banned'."
 	'(variable-pitch ((t (:family "SN Pro" :height 110))))
 )
 ;; 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.
-(dolist (
-	charset '(
-		han
-		;; symbol
-		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")))
 
 ;; Describe a key based on a string like "C-SPC"
 (defun describe-key-shortcut (shortcut)