diff options
author | Thanos Apollo <[email protected]> | 2023-09-27 02:12:55 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-27 02:12:55 +0300 |
commit | 2301fc1e6671b3c46eb5cb107beb841e6abe8a5e (patch) | |
tree | 2cb96da3f998d455b237db4ab020c0859cab5786 | |
parent | e52384090f3011cdbcc8ec8aa8d84a4389128e56 (diff) |
[emacs] Update mu4e-context order
m--------- | .config/nyxt/aarta-config | 0 | ||||
-rw-r--r-- | .emacs.d/modules/thanos-mu4e.el | 8 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/nyxt/aarta-config b/.config/nyxt/aarta-config deleted file mode 160000 -Subproject 562dc7ba5f67c60cedcfa920a8001111e0f6a87 diff --git a/.emacs.d/modules/thanos-mu4e.el b/.emacs.d/modules/thanos-mu4e.el index 0f243a3..ec2001c 100644 --- a/.emacs.d/modules/thanos-mu4e.el +++ b/.emacs.d/modules/thanos-mu4e.el @@ -78,24 +78,24 @@ (setf mu4e-contexts (list (make-mu4e-context - :name "Fastmail" + :name "Public" :match-func (lambda (msg) (when msg (string-prefix-p "/" (mu4e-message-field msg :maildir)))) - :vars '((user-mail-address . "[email protected]") + :vars '((user-mail-address . "[email protected]") (user-full-name . "Thanos Apollo") (mu4e-drafts-folder . "/Drafts") (mu4e-sent-folder . "/Sent") (mu4e-refile-folder . "/Archive") (mu4e-trash-folder . "/Trash"))) (make-mu4e-context - :name "Public" + :name "Fastmail" :match-func (lambda (msg) (when msg (string-prefix-p "/" (mu4e-message-field msg :maildir)))) - :vars '((user-mail-address . "[email protected]") + :vars '((user-mail-address . "[email protected]") (user-full-name . "Thanos Apollo") (mu4e-drafts-folder . "/Drafts") (mu4e-sent-folder . "/Sent") |