Files
.emacs.d/modules/languages/siren-polymode.el
Jim Myhrberg a74610689e feat(lang): Language aware syntax highlight of markdown code-blocks
Enable polymode within code-blocks in Markdown files. Effectively, it
allows code-blocks of various languages to be handled by their
respective major modes, allowing correct syntax highlighting, snippets,
and other features to work as you would expect.
2020-06-07 15:50:49 +01:00

14 lines
231 B
EmacsLisp

;;; siren-polymode.el --- jimeh's Emacs Siren: polymode configuration.
;;; Commentary:
;; Basic configuration for polymode.
;;; Code:
(use-package polymode
:defer t)
(provide 'siren-polymode)
;;; siren-polymode.el ends here