(require 'config-package) (use-package markdown-mode ;; mode to support files in the Markdown format :ensure t :commands (markdown-mode gfm-mode) :mode (("\\.md\\'" . gfm-mode) ("\\.markdown\\'" . gfm-mode)) :init (setq markdown-command "pandoc -f markdown_github -c https://goo.gl/OVmlwT --self-contained") :config (add-hook 'gfm-mode-hook 'visual-line-mode)) (provide 'module-markdown)