Last active
January 4, 2016 02:29
-
-
Save Superbil/8554936 to your computer and use it in GitHub Desktop.
在 Mac OS X 上設定 org-mode 表格可以正確對齊的中文字體設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; 在 Mac OS X 上設定 org-mode 表格可以正確對齊的中文字體設定 - Dev Notes | |
;;; http://kkdevs.tumblr.com/post/38276076979/mac-os-x-org-mode | |
(defun set-font (english english-size chinese chinese-size) | |
(set-face-attribute 'default nil :font | |
(format "%s:pixelsize=%d" english english-size)) | |
(dolist (charset '(kana han symbol cjk-misc bopomofo)) | |
(set-fontset-font (frame-parameter nil 'font) charset | |
(font-spec :family chinese :size chinese-size)))) | |
(set-font "Monaco" 13 "STHeiti" 13) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment