This commit is contained in:
John Doty 2022-03-27 10:51:15 -07:00
parent b07e01b8b7
commit 9252041c46
4 changed files with 82 additions and 73 deletions

View file

@ -1035,8 +1035,15 @@
;; ================================================================
;; Pico-8
;; ================================================================
(defun my-pico8-hook ()
"My hook for pico-8 mode."
;; Pico-8 has a small indent.
(setq lua-indent-level 2)
(set-fill-column 32))
(use-package pico8-mode
:mode (("\\.p8\\'" . pico8-mode)))
:mode (("\\.p8\\'" . pico8-mode))
:config (add-hook 'pico8-mode-hook 'my-pico8-hook))
;; ================================================================
;; Ink