dotfiles/emacs-lisp/ement_el.org

21 lines
517 B
Org Mode
Raw Normal View History

:PROPERTIES:
:ID: cfb02bea-f9a2-4c7c-8971-d082feedab22
:END:
#+title: ement.el
#+filetags: emacs-load
#+begin_src emacs-lisp
(use-package password-store
:straight t)
(use-package ement
: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"))
#+end_src
#+RESULTS: