feat(emacs): wayland nox and markdown mode

This commit is contained in:
js0ny 2025-04-17 01:10:56 +01:00
parent 4f20405cfb
commit b66b442dba
5 changed files with 46 additions and 20 deletions

View file

@ -0,0 +1,12 @@
(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