mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
12 lines
314 B
EmacsLisp
12 lines
314 B
EmacsLisp
(use-package yaml-mode :straight t)
|
|
|
|
(use-package markdown-mode
|
|
:mode ("\\.md\\'" . markdown-mode)
|
|
:init
|
|
(setq markdown-fontify-code-blokcs-natively t)
|
|
:custom
|
|
(setq markdown-fontify-code-block-natively t)
|
|
:hook ((markdown-mode . visual-line-mode)))
|
|
|
|
(provide 'init-markdown)
|
|
;;; init-markdown.el ends
|