Skip to content

Instantly share code, notes, and snippets.

@idiottiger
Created September 14, 2017 12:50
Show Gist options
  • Save idiottiger/39e3ab9f90754bb7f23cf394e0d83a9b to your computer and use it in GitHub Desktop.
Save idiottiger/39e3ab9f90754bb7f23cf394e0d83a9b to your computer and use it in GitHub Desktop.
解决 mac org table 中英文字体混排时表格宽度不一致
;;;中文与英文字体设置
;; Setting English Font
(set-face-attribute
'default nil :font "Monaco 14")
;; Chinese Font
(dolist (charset '(kana han symbol cjk-misc bopomofo))
(set-fontset-font (frame-parameter nil 'font)
charset
(font-spec :family "WenQuanYi Micro Hei Mono" :size 16)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment