doomemacs/modules/lang/lua/packages.el
Henrik Lissner e55ed59951
lang/lua: add flycheck-moonscript package
And only install moonscript package if +moonscript flag is provided.
2019-09-06 00:33:17 -04:00

15 lines
343 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/lua/packages.el
(package! lua-mode)
(when (featurep! +moonscript)
(package! moonscript)
(when (featurep! :tools flycheck)
(package! flycheck-moonscript
:recipe (:host github :repo "hlissner/emacs-flycheck-moonscript"))))
(when (featurep! :completion company)
(package! company-lua))