2025-10-30 13:44:45 -05:00
|
|
|
* Socializing
|
|
|
|
|
|
|
|
|
|
Here are some things I use to optionally communicate with the rest of the world
|
|
|
|
|
via Emacs. I keep them in separate files so I can optionally load them easily
|
|
|
|
|
on a system by system basis.
|
|
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
;;; Extra optional files
|
|
|
|
|
|
|
|
|
|
(defun maybe-load-rel (relpath)
|
|
|
|
|
"Loads a file relative to the user-emacs-directory fi it exists."
|
|
|
|
|
(let ((path (concat (file-name-as-directory user-emacs-directory) relpath)))
|
|
|
|
|
(when (file-exists-p path)
|
|
|
|
|
(load-file path))))
|
|
|
|
|
|
|
|
|
|
(maybe-load-rel "extra/email.el")
|
|
|
|
|
(maybe-load-rel "extra/feed.el")
|
|
|
|
|
(maybe-load-rel "extra/social.el")
|
|
|
|
|
;;;
|
|
|
|
|
#+end_src
|
|
|
|
|
|
2025-12-02 03:10:53 -06:00
|
|
|
For now I have org-social enabled by default. It looks promising and doesn't add
|
|
|
|
|
any substantial bloat so why not.
|
|
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
|
(use-package org-social
|
|
|
|
|
:ensure t
|
|
|
|
|
:config
|
|
|
|
|
(setq org-social-file "~/repos/xulfer.srht.site/social.org"
|
|
|
|
|
org-social-relay "https://relay.org-social.org"
|
|
|
|
|
org-social-my-public-url "https://xulfer.srht.site/social.org"))
|
|
|
|
|
#+END_SRC
|