Updates to things
This commit is contained in:
parent
3b4159895f
commit
717e0fcffc
3
.gitignore
vendored
3
.gitignore
vendored
@ -22,4 +22,5 @@ var*
|
|||||||
snippets/*
|
snippets/*
|
||||||
diary
|
diary
|
||||||
srecode-map.el
|
srecode-map.el
|
||||||
places
|
places
|
||||||
|
games
|
@ -6,16 +6,33 @@
|
|||||||
(defcustom whomp-games nil
|
(defcustom whomp-games nil
|
||||||
"Include non-standard game packages."
|
"Include non-standard game packages."
|
||||||
:type '(set (const :tag "None" nil)
|
: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)
|
:group 'whomp-config)
|
||||||
|
|
||||||
(when (memq 'pacmacs-game whomp-games)
|
(when (memq 'pacmacsgame whomp-games)
|
||||||
(use-package pacmacs
|
(use-package pacmacs
|
||||||
|
:straight t
|
||||||
:defer t
|
:defer t
|
||||||
:ensure t)
|
:ensure t)
|
||||||
(message "pacmacs loaded"))
|
(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")
|
(message "W.H.O.M.P. games packages loaded")
|
||||||
(provide 'whomp-games)
|
(provide 'whomp-games)
|
||||||
;; whomp-games.el ends here
|
;; whomp-games.el ends here
|
||||||
|
Loading…
Reference in New Issue
Block a user