Skip to content

Instantly share code, notes, and snippets.

@mymindleaks
Created June 3, 2012 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mymindleaks/2864590 to your computer and use it in GitHub Desktop.
Save mymindleaks/2864590 to your computer and use it in GitHub Desktop.
Configure markdown mode for emacs
;add the path where all the user modules will be located
(add-to-list 'load-path "~/.emacs.d/")
(autoload 'markdown-mode "markdown-mode.el"
"Major mode for editing Markdown files" t)
(setq auto-mode-alist
(cons '("\\.md" . markdown-mode) auto-mode-alist)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment