We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b9dc33 commit b237a9cCopy full SHA for b237a9c
modules/on-demand/me-mojo.el
@@ -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