Skip to content

Instantly share code, notes, and snippets.

@kellpossible
Created June 12, 2018 04:23
Show Gist options
  • Save kellpossible/19310b21795f6c47667fdf0f4968b6c2 to your computer and use it in GitHub Desktop.
Save kellpossible/19310b21795f6c47667fdf0f4968b6c2 to your computer and use it in GitHub Desktop.
Emacs Monokai Markdown Headings same as Org Mode
(custom-set-faces
'(markdown-header-face-1 ((t (:inherit markdown-header-face :foreground "chocolate1" :height 1.5))))
'(markdown-header-face-3 ((t (:inherit markdown-header-face :foreground "#66d9ef" :height 1.15))))
'(markdown-header-face-4 ((t (:inherit markdown-header-face :foreground "#e6db74" :height 1.1))))
'(markdown-header-face-5 ((t (:inherit markdown-header-face :foreground "#a1efe4")))))
@kellpossible
Copy link
Author

I've also got evil-markdown emabled. This needs to be installed manually and added to the load path, i've got it in the lisp directory here:

(add-to-list 'load-path "~/.emacs.d/lisp")
(require 'evil-markdown)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment