diff --git a/.gitignore b/.gitignore index b7d6b79..90f9f0d 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,5 @@ var* snippets/* diary srecode-map.el -places \ No newline at end of file +places +games \ No newline at end of file diff --git a/whomp/whomp-games.el b/whomp/whomp-games.el index 57b684b..39454f0 100644 --- a/whomp/whomp-games.el +++ b/whomp/whomp-games.el @@ -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