Skip to content

Instantly share code, notes, and snippets.

@tomoya
Created June 1, 2010 17:32
Show Gist options
  • Save tomoya/421205 to your computer and use it in GitHub Desktop.
Save tomoya/421205 to your computer and use it in GitHub Desktop.
; acii
(set-face-attribute 'default nil
:family "Menlo"
:height 140)
;; kanji
(set-fontset-font nil 'japanese-jisx0208 (font-spec :family "Hiragino_Mincho_ProN"))
;; kana
(set-fontset-font nil '( #x3000 . #x30ff) (font-spec :family "NfMotoyaCedar"))
;; width
(setq face-font-rescale-alist
'((".*Menlo.*" . 1.0)
("^-apple-M+.*" . 1.2)
(".*Hiragino_Mincho_ProN.*" . 1.2)
(".*Hiragino_Kaku_Gothic_ProN.*" . 1.2)
(".*nfmotoyacedar-bold.*" . 1.2)
(".*nfmotoyacedar-medium.*" . 1.2)
("-cdac$" . 1.3)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment