-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy-matrix.el
32 lines (28 loc) · 895 Bytes
/
my-matrix.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
;;; my-matrix --- Matrix handling
;;
;;; Commentary:
;;
;; Currently using ement
;;
;;; Code:
;; while running ement from a checkout we need to ensure
;; some of its dependencies
(use-package taxy-magit-section
:ensure t)
(use-package plz
:ensure t)
(use-package ement
:requires (plz taxy taxy-magit-section)
:ensure t
;; :load-path (lambda () (my-return-path-if-ok
;; "~/src/emacs/ement.el.git"))
:custom
;; :NOTE| Notifications ought to be limited to @mentions only!
(ement-notify-notification-predicates '(ement-notify--event-mentions-session-user-p
ement-notify--event-mentions-room-p))
(ement-room-images t)
(ement-room-message-format-spec "%S>%L %B%r%R[%t]")
(ement-room-send-message-filter #'ement-room-send-org-filter)
(ement-save-sessions t))
(provide 'my-matrix)
;;; my-matrix.el ends here