Updates to things
This commit is contained in:
parent
3b4159895f
commit
717e0fcffc
1
.gitignore
vendored
1
.gitignore
vendored
@ -23,3 +23,4 @@ snippets/*
|
||||
diary
|
||||
srecode-map.el
|
||||
places
|
||||
games
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user