Skip to content

Instantly share code, notes, and snippets.

@l4sh
Forked from matthewmccullough/init.el
Created April 11, 2016 17:43
Show Gist options
  • Save l4sh/2e6dd6b91d9b6dba6d238712ef9a0cd3 to your computer and use it in GitHub Desktop.
Save l4sh/2e6dd6b91d9b6dba6d238712ef9a0cd3 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