doomemacs/modules/lang/lua/packages.el

15 lines
344 B
EmacsLisp
Raw Normal View History

2017-02-19 18:57:16 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/lua/packages.el
(package! lua-mode)
(when (featurep! +moonscript)
(package! moonscript)
(when (featurep! :checkers syntax)
(package! flycheck-moonscript
:recipe (:host github :repo "hlissner/emacs-flycheck-moonscript"))))
2017-02-19 18:57:16 -05:00
(when (featurep! :completion company)
(package! company-lua))
2017-02-19 18:57:16 -05:00