diff --git a/org/config/spacemacs.org b/org/config/spacemacs.org index 18ea17e..29ab0e7 100644 --- a/org/config/spacemacs.org +++ b/org/config/spacemacs.org @@ -97,7 +97,7 @@ | doom-themes | some cool themes | | edit-indirect | edit region in separate buffer | | elcord | rich integration of Emacs in Discord | - | helm-icons | Integration between helm and treemacs icons | + | helm-icons | integration between helm and treemacs icons | | kaolin-themes | some cool themes | | lsp-dart | apparently, it isn’t included in the Dart layer | | magit-gitflow | integrate gitflow in Magit | @@ -3186,12 +3186,22 @@ you get with modern Email client (and often you don’t even get them). All these bookmarks can be accessed through a shortcut on the main mu4e buffer, prefixed by ~b~. So, for instance, my unread messages are accessed through - ~bu~. + ~bU~. #+BEGIN_SRC emacs-lisp (setq mu4e-bookmarks `(("maildir:/Inbox AND NOT flag:trashed" "Inbox" ?i) + (,(s-join " " + '("maildir:/Inbox" + "AND NOT flag:trashed" + "AND f:/.*up8\.edu|.*univ-paris8.*/")) + "University" ?u) + (,(s-join " " + '("maildir:/Inbox" + "AND (list:ateliers-emacs.framalistes.org" + "OR list:ateliers-paris.emacs-doctor.com)")) + "Emacs" ?e) ("maildir:/Sent" "Sent messages" ?s) - ("flag:unread AND NOT flag:trashed" "Unread messages" ?u) + ("flag:unread AND NOT flag:trashed" "Unread messages" ?U) ("date:today..now" "Today's messages" ?t) ("date:7d..now" "Last 7 days" ?w) ("date:1m..now" "Last month" ?m)