Update to add initial social media support
This commit is contained in:
parent
b36593c7a3
commit
3b4159895f
4
init.el
4
init.el
@ -39,7 +39,9 @@
|
|||||||
;; development configuration
|
;; development configuration
|
||||||
(require 'whomp-development)
|
(require 'whomp-development)
|
||||||
;; AI configuration (temporarily removed pending consideration)
|
;; AI configuration (temporarily removed pending consideration)
|
||||||
;; (require 'whomp-ai)
|
(require 'whomp-ai)
|
||||||
|
;; social media configuration
|
||||||
|
(require 'whomp-social)
|
||||||
;; games configuration
|
;; games configuration
|
||||||
(require 'whomp-games)
|
(require 'whomp-games)
|
||||||
;; org configuration
|
;; org configuration
|
||||||
|
20
whomp/whomp-social.el
Normal file
20
whomp/whomp-social.el
Normal 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
|
Loading…
Reference in New Issue
Block a user