technomancy/fennel-mode@a395437 -> technomancy/fennel-mode@7a8824a Fixes #4263: invalid repl handler for fennel-mode
17 lines
642 B
EmacsLisp
17 lines
642 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/lua/packages.el
|
|
|
|
(package! lua-mode :pin "d2ff3045b9694293a302fa60d7bd5d97f2673156")
|
|
|
|
(when (featurep! +moonscript)
|
|
(package! moonscript :pin "56f90471e2ced2b0a177aed4d8c2f854797e9cc7")
|
|
(when (featurep! :checkers syntax)
|
|
(package! flycheck-moonscript
|
|
:recipe (:host github :repo "hlissner/emacs-flycheck-moonscript")
|
|
:pin "fcb99e5efcf31db05f236f02eaa575986a57172d")))
|
|
|
|
(when (featurep! +fennel)
|
|
(package! fennel-mode :pin "7a8824a44c231a984e582ef115cef620174b2ed5"))
|
|
|
|
(when (featurep! :completion company)
|
|
(package! company-lua :pin "29f6819de4d691e5fd0b62893a9f4fbc1c6fcb52"))
|