Skip to content

Instantly share code, notes, and snippets.

@Superbil
Last active January 4, 2016 02:29
Show Gist options
  • Save Superbil/8554936 to your computer and use it in GitHub Desktop.
Save Superbil/8554936 to your computer and use it in GitHub Desktop.
在 Mac OS X 上設定 org-mode 表格可以正確對齊的中文字體設定
;;; 在 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