diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-13 16:41:12 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-13 16:41:12 +0200 |
commit | 0bd5f7a46dd79de251afffb632d5112a37623064 (patch) | |
tree | 20894b3c761adb050d05ac6062b7a774ed524aff /.config | |
parent | e233a02f77637ae69385f980a01334b612cda5b7 (diff) |
emacs: Use new syntax for ‘mu4e-maildir-shortcuts’
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/config.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 8c6d782..d79780a 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -1000,11 +1000,11 @@ mixed on when I do and -don’t want it. I always want it in ~org-mode~ though. (mu4e-sent-folder . "/mail@thomasvoss.com/Sent") (mu4e-refile-folder . "/mail@thomasvoss.com/Archive") (mu4e-trash-folder . "/mail@thomasvoss.com/Junk") - (mu4e-maildir-shortcuts . '(("/mail@thomasvoss.com/Inbox" . ?i) - ("/mail@thomasvoss.com/Sent" . ?s) - ("/mail@thomasvoss.com/Archive" . ?a) - ("/mail@thomasvoss.com/Drafts" . ?d) - ("/mail@thomasvoss.com/Junk" . ?j)))))) + (mu4e-maildir-shortcuts . '((:name "Inbox" :maildir "/mail@thomasvoss.com/Inbox" :key ?i) + (:name "Archive" :maildir "/mail@thomasvoss.com/Archive" :key ?a) + (:name "Drafts" :maildir "/mail@thomasvoss.com/Drafts" :key ?d) + (:name "Sent" :maildir "/mail@thomasvoss.com/Sent" :key ?s) + (:name "Junk" :maildir "/mail@thomasvoss.com/Junk" :key ?j)))))) (setq mu4e-contexts (list mm--mu4e-personal-context))) |