mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
15 lines
263 B
EmacsLisp
15 lines
263 B
EmacsLisp
;;; siren-pandoc.el --- jimeh's Emacs Siren: pandoc-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for pandoc-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package pandoc-mode
|
|
:hook
|
|
(markdown-mode . pandoc-mode))
|
|
|
|
(provide 'siren-pandoc)
|
|
;;; siren-pandoc.el ends here
|