39 lines
811 B
EmacsLisp
39 lines
811 B
EmacsLisp
;;
|
|
;; 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 "chess" chessgame)
|
|
(const :tag "fireplace" fireplacegame)
|
|
(const :tag "pacmacs" pacmacsgame)
|
|
)
|
|
:group 'whomp-config)
|
|
|
|
(when (memq 'pacmacsgame whomp-games)
|
|
(use-package pacmacs
|
|
:straight t
|
|
:defer t
|
|
:ensure t)
|
|
(message "pacmacs loaded"))
|
|
|
|
(when (memq 'chessgame whomp-games)
|
|
(use-package chess
|
|
:straight t
|
|
:defer t
|
|
:ensure t)
|
|
(message "chess loaded"))
|
|
|
|
(when (memq 'fireplacegame whomp-games)
|
|
(use-package fireplace
|
|
:straight t
|
|
:defer t
|
|
:ensure t)
|
|
(message "fireplace loaded"))
|
|
|
|
(message "W.H.O.M.P. games packages loaded")
|
|
(provide 'whomp-games)
|
|
;; whomp-games.el ends here
|