uhhh
This commit is contained in:
parent
70e03d38c2
commit
bb4540ccfc
1 changed files with 24 additions and 1 deletions
|
@ -1059,7 +1059,30 @@ Will configure later, (use elfeed protocol ok ty)
|
||||||
** Matrix
|
** Matrix
|
||||||
Ill set this up later as well
|
Ill set this up later as well
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package ement)
|
(use-package ement
|
||||||
|
:commands ement-connect
|
||||||
|
:custom
|
||||||
|
(ement-notify-dbus-p nil) ;; Turn off notifications
|
||||||
|
(ement-sessions-file "~/.cache/ement.el")
|
||||||
|
(ement-room-list-default-keys
|
||||||
|
'(;; Group all invitations (this group will appear first since the rooms are
|
||||||
|
;; already sorted first).
|
||||||
|
((membership :status 'invite))
|
||||||
|
|
||||||
|
;; Group all left rooms (this group will appear last, because the rooms are already
|
||||||
|
;; sorted last).
|
||||||
|
((membership :status 'leave))
|
||||||
|
|
||||||
|
;; Group all favorite rooms, which are already sorted first.
|
||||||
|
(favourite)
|
||||||
|
|
||||||
|
;; Group all low-priority rooms, which are already sorted last.
|
||||||
|
(low-priority)
|
||||||
|
|
||||||
|
;; Group other rooms which are unread.
|
||||||
|
(unread)
|
||||||
|
(people)
|
||||||
|
freshness)))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Subsonic
|
** Subsonic
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue