21 lines
490 B
EmacsLisp
21 lines
490 B
EmacsLisp
;;
|
|
;; 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
|