2022-09-26 18:39:53 +02:00
|
|
|
:PROPERTIES:
|
|
|
|
:ID: cfb02bea-f9a2-4c7c-8971-d082feedab22
|
|
|
|
:END:
|
|
|
|
#+title: ement.el
|
|
|
|
#+filetags: emacs-load
|
2022-10-01 19:53:16 +02:00
|
|
|
|
2022-09-26 18:39:53 +02:00
|
|
|
#+begin_src emacs-lisp
|
2022-10-07 22:05:31 +02:00
|
|
|
(use-package password-store
|
|
|
|
:straight t)
|
2022-09-26 18:39:53 +02:00
|
|
|
(use-package ement
|
2022-10-07 22:05:31 +02:00
|
|
|
:straight '(ement :type git :host github :repo "alphapapa/ement.el")
|
|
|
|
:after 'password-store
|
|
|
|
:config
|
|
|
|
(ement-connect
|
|
|
|
:uri-prefix "http://localhost:8008"
|
|
|
|
:password (password-store-get "Matrix/@magic_rb:matrix.redalder.org")
|
|
|
|
:user-id "@magic_rb:matrix.redalder.org"))
|
2022-09-26 18:39:53 +02:00
|
|
|
#+end_src
|
2022-10-07 22:05:31 +02:00
|
|
|
|
|
|
|
#+RESULTS:
|