Skip to content

Instantly share code, notes, and snippets.

@matthewmccullough
Created January 22, 2012 18:24
Show Gist options
  • Save matthewmccullough/1658034 to your computer and use it in GitHub Desktop.
Save matthewmccullough/1658034 to your computer and use it in GitHub Desktop.
Customize Markdown and Org-Mode Font Faces on Aquamacs Emacs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Customize Font Faces
;; http://www.emacswiki.org/emacs/CustomizingFaces
(custom-set-faces
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(markdown-header-face-1 ((t (:inherit markdown-header-face :height 2.2))))
'(markdown-header-face-2 ((t (:inherit markdown-header-face :height 1.7))))
'(markdown-header-face-3 ((t (:inherit markdown-header-face :height 1.3))))
'(org-level-1 ((t (:inherit org-level-1 :height 1.5))))
'(org-level-2 ((t (:inherit org-level-2 :height 1.3))))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment