Skip to content

Commit b237a9c

Browse files
committed
feat(on-demand): add support for the Mojo language
1 parent 7b9dc33 commit b237a9c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

modules/on-demand/me-mojo.el

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
;;; me-mojo.el --- Mojo language -*- lexical-binding: t; -*-
2+
3+
;; Copyright (C) 2022-2024 Abdelhak Bougouffa
4+
5+
;; Author: Abdelhak Bougouffa (rot13 "nobhtbhssn@srqbencebwrpg.bet")
6+
7+
;;; Commentary:
8+
9+
;;; Code:
10+
11+
;;;###autoload
12+
(minemacs-register-on-demand-module 'me-mojo
13+
:auto-mode '(("\\.mojo\\'" . mojo-mode) ("\\.🔥\\'" . mojo-mode)))
14+
15+
(use-package mojo
16+
:straight (:host github :repo "andcarnivorous/mojo-hl")
17+
:commands (mojo-mode mojo-compile)
18+
:mode "\\.🔥\\'")
19+
20+
21+
(provide 'on-demand/me-mojo)
22+
;;; me-mojo.el ends here

0 commit comments

Comments
 (0)