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
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; 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:
@ -120,8 +120,8 @@
:mode
(("README\\.md$" . gfm-mode)
("\\.md$" . markdown-mode)
("\\.markdown$" . markdown-mode))
("\\.md$" . gfm-mode)
("\\.markdown$" . gfm-mode))
:hook
(markdown-mode . auto-fill-mode) ; Wrap at fill-column.