From bb4540ccfcf7a3de79a2aba2e10589998184ae75 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:13:16 +0400 Subject: [PATCH] uhhh --- config/emacs/emacs.org | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/config/emacs/emacs.org b/config/emacs/emacs.org index 56fb499e..29d21d2c 100644 --- a/config/emacs/emacs.org +++ b/config/emacs/emacs.org @@ -1059,7 +1059,30 @@ Will configure later, (use elfeed protocol ok ty) ** Matrix Ill set this up later as well #+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 ** Subsonic #+begin_src emacs-lisp