diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-20 08:34:40 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-20 08:34:40 +0800 |
commit | bc045b7e9f8e8fae58db971e28789ca0ac2c644b (patch) | |
tree | 06610097b851e5dbd9ccf2d21bd33d915960b77f /_spacemacs.d/config/my-mu4e.el | |
parent | 4255c0ae146715f7d01130112b0cb260b2d4710b (diff) | |
download | dotfiles-bc045b7e9f8e8fae58db971e28789ca0ac2c644b.tar.bz2 |
spacemacs/mu4e: tweak bookmarks and citation style
Diffstat (limited to '_spacemacs.d/config/my-mu4e.el')
-rw-r--r-- | _spacemacs.d/config/my-mu4e.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/_spacemacs.d/config/my-mu4e.el b/_spacemacs.d/config/my-mu4e.el index 13478e6..06f4adf 100644 --- a/_spacemacs.d/config/my-mu4e.el +++ b/_spacemacs.d/config/my-mu4e.el @@ -215,7 +215,7 @@ message-sendmail-extra-arguments '("--read-envelope-from") sendmail-program "msmtp") - ;; Allow for fetch mail and update index using 'U' in the main view + ;; Allow mu4e to fetch mail and update index ;; NOTE: I use own cron/shell task to get/sync email (setq mu4e-get-mail-command "true") ;; Get mail and update index periodically in the background (unit: seconds) @@ -269,9 +269,9 @@ ;; change the luminosity form dark theme (setq shr-color-visible-luminance-min 70) - ;; add custom bookmarks + ;; Set bookmarks (setq mu4e-bookmarks - '(("flag:unread AND NOT flag:trashed" "Unread messages" ?u) + '(("flag:unread AND NOT flag:trashed" "INBOX" ?b) ("flag:draft" "Drafts" ?f) ("tag:todo OR tag:task" "TODO / Task" ?t) ("tag:work" "Work" ?W) @@ -285,7 +285,7 @@ ("flag:trashed OR tag:\\\\Trash" "Deleted" ?d) ("mime:image/*" "Messages with images" ?p))) - ;; headers list appearance + ;; Headers list appearance (setq mu4e-headers-date-format "%Y-%m-%d %H:%M" mu4e-headers-fields '((:date . 18) ;; also :human-date (:flags . 5) @@ -307,9 +307,9 @@ ;; exclude the duplicate messages with the same `Message-ID' ;(setq mu4e-headers-skip-duplicates t) - ;; customize the reply/quote citation format - (setq message-citation-line-format "On %a, %b %d, %Y at %R, %f wrote:\n") - ;; choose to use the above formatted string + ;; Customize the reply/quote citation format + (setq message-citation-line-format "On %a, %Y-%b-%d at %R %Z, %f wrote:\n") + ;; Choose to use the above formatted string (setq message-citation-line-function 'message-insert-formatted-citation-line) ;; confirm before sending |