mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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.
14 lines
231 B
EmacsLisp
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
|