diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-08 22:44:34 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-08 22:44:34 +0800 |
commit | 2f815eeebbeb2950ecfdab3627be73b1deb94537 (patch) | |
tree | cb6c92e8c655c6b3885f0dd04a5336fe7a6b41b8 | |
parent | e079436b4b8477efc2d2cb625f855669b6ddb571 (diff) | |
download | dotfiles-2f815eeebbeb2950ecfdab3627be73b1deb94537.tar.bz2 |
spacemacs/mu4e: fix bookmarks
-rw-r--r-- | _spacemacs.d/config/my-mu4e.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/_spacemacs.d/config/my-mu4e.el b/_spacemacs.d/config/my-mu4e.el index 3cb3267..dcbbc04 100644 --- a/_spacemacs.d/config/my-mu4e.el +++ b/_spacemacs.d/config/my-mu4e.el @@ -250,6 +250,10 @@ ;; reformat the paragraph into a single line. (setq mu4e-compose-format-flowed t) + ;; Do not cleanup trailing whitespaces + (add-hook 'mu4e-compose-mode-hook + 'spacemacs/toggle-whitespace-cleanup-off) + ;; enable inline images (setq mu4e-view-show-images t) ;; use imagemagick if available @@ -272,7 +276,7 @@ ;; Set bookmarks (setq mu4e-bookmarks '(("flag:unread AND NOT flag:trashed" "INBOX" ?b) - ("flag:draft" "Drafts" ?f) + ("flag:draft" "Drafts" ?d) ("tag:todo OR tag:task" "TODO / Task" ?t) ("tag:work" "Work" ?W) ("date:today..now" "Today's messages" ?T) @@ -282,7 +286,7 @@ ("tag:astro" "Astro" ?a) ("tag:arxiv OR from:arxiv.org" "arXiv" ?x) ("tag:SMS" "SMS" ?S) - ("flag:trashed OR tag:\\\\Trash" "Deleted" ?d) + ("flag:trashed OR tag:\\\\Trash" "Deleted" ?D) ("mime:image/*" "Messages with images" ?p))) ;; Headers list appearance |