Basic syntax highlight of cooklang on Emacs
Example of syntax highlight
If you're running Emacs 30 or newer, you can install and load cook-mode with use-package
:
(use-package cook-mode
:vc (:url "https://github.com/cooklang/cook-mode"
:rev :newest
:branch "master"))
If you're running an older version of Emacs, download the cook-mode.el
file and add the following to your .emacs.el or .emacs.d/init.el
(load "/path/to/install/directory/cook-mode.el")
Add the following to your packages.el
(package! cook-mode
:recipe (:host github
:repo "cooklang/cook-mode"))