Updates to things

This commit is contained in:
William Moore 2024-08-06 15:32:02 -05:00
parent 3b4159895f
commit 717e0fcffc
2 changed files with 21 additions and 3 deletions

3
.gitignore vendored
View File

@ -22,4 +22,5 @@ var*
snippets/*
diary
srecode-map.el
places
places
games

View File

@ -6,16 +6,33 @@
(defcustom whomp-games nil
"Include non-standard game packages."
:type '(set (const :tag "None" nil)
(const :tag "pacmacs" pacmacs-game) ;; code completion
(const :tag "chess" chessgame)
(const :tag "fireplace" fireplacegame)
(const :tag "pacmacs" pacmacsgame)
)
:group 'whomp-config)
(when (memq 'pacmacs-game whomp-games)
(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