whompmacs/whomp/whomp-games.el

22 lines
478 B
EmacsLisp
Raw Normal View History

2024-07-17 17:32:13 +00:00
;;
;; Games packages
;; These are games not installed by default
;;
(defcustom whomp-games nil
"Include non-standard game packages."
:type '(set (const :tag "None" nil)
(const :tag "pacmacs" pacmacs-game) ;; code completion
)
:group 'whomp-config)
(when (memq 'pacmacs-game whomp-games)
(use-package pacmacs
:defer t
:ensure t)
(message "pacmacs loaded"))
(message "W.H.O.M.P. games packages loaded")
(provide 'whomp-games)
;; whomp-games.el ends here