branch: elpa/markdown-mode commit d1d456b47a7986f1e9991697869330b0597069da Author: Shohei YOSHIDA <syo...@gmail.com> Commit: Shohei YOSHIDA <syo...@gmail.com>
Fix use-package sample configuration This is for avoiding overriding `README.md` configuration. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c46bf2e..ed367a3 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,9 @@ example; adjust settings as desired): ```lisp (use-package markdown-mode :ensure t - :mode (("README\\.md\\'" . gfm-mode) - ("\\.md\\'" . markdown-mode) - ("\\.markdown\\'" . markdown-mode)) + :mode (("\\.md\\'" . markdown-mode) + ("\\.markdown\\'" . markdown-mode) + ("README\\.md\\'" . gfm-mode)) :init (setq markdown-command "multimarkdown")) ```