Files
dtos-dotfiles/.emacs.d/modules/lang/lua/packages.el
2019-12-16 20:21:19 -06: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))