Emacs: Use “GitHub flavoured markdown” for .md files.

This commit is contained in:
tastytea 2020-03-23 13:48:59 +01:00
parent c252dd2153
commit a94ecf2126

View File

@ -1,6 +1,6 @@
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-18T14:59:05+0100> ;; Time-stamp: <2020-03-23T13:48:44+0100>
;;; Commentary: ;;; Commentary:
@ -120,8 +120,8 @@
:mode :mode
(("README\\.md$" . gfm-mode) (("README\\.md$" . gfm-mode)
("\\.md$" . markdown-mode) ("\\.md$" . gfm-mode)
("\\.markdown$" . markdown-mode)) ("\\.markdown$" . gfm-mode))
:hook :hook
(markdown-mode . auto-fill-mode) ; Wrap at fill-column. (markdown-mode . auto-fill-mode) ; Wrap at fill-column.