Update to add initial social media support

This commit is contained in:
William Moore 2024-07-18 07:47:45 -05:00
parent b36593c7a3
commit 3b4159895f
2 changed files with 23 additions and 1 deletions

View File

@ -39,7 +39,9 @@
;; development configuration
(require 'whomp-development)
;; AI configuration (temporarily removed pending consideration)
;; (require 'whomp-ai)
(require 'whomp-ai)
;; social media configuration
(require 'whomp-social)
;; games configuration
(require 'whomp-games)
;; org configuration

20
whomp/whomp-social.el Normal file
View File

@ -0,0 +1,20 @@
;;
;; Social Networking packages
;; These are the packages related to social media
;;
(defcustom whomp-social nil
"Whether or not to enable Social Media packages."
:type '(set (const :tag "Mastodon" mastodonmode) ;; Mastodon API
)
:group 'whomp-config)
(when (memq 'mastodonmode whomp-social)
(use-package mastodon
:straight t
:defer t)
(message "mastodon loaded"))
(message "W.H.O.M.P. Social Media packages loaded")
(provide 'whomp-social)
;; whomp-social.el ends here