Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[emacs] update: move to mu4e 1.7ish
  * also add the internal installation of mu
  • Loading branch information
seblemaguer committed Sep 8, 2021
1 parent 69d2394 commit 11acf69
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions emacs.d/README.org
Expand Up @@ -4282,13 +4282,14 @@ I also redesigned the header buffer.

#+begin_src emacs-lisp
(use-package mu4e
:straight nil
:straight (:host github
:repo "djcb/mu"
:branch "master"
:files ("build/mu4e/*.el" "build/mu4e/*.elc" "mu4e/*.el" "mu4e/*.elc")
:pre-build (("./autogen.sh") ("make")))
:tags '("CONNECTED" "MAIL")
:commands (mu4e)
:bind
(("<f2>" . mu4e))

:load-path "~/environment/local/share/emacs/site-lisp/mu4e"
:bind (("<f2>" . mu4e))
:hook
(after-init . (lambda () (mu4e t)))

Expand Down Expand Up @@ -4477,9 +4478,8 @@ I also redesigned the header buffer.
(:subject . nil))))

(use-package mu4e-context
:straight nil
:straight mu4e
:tags '("CONNECTED" "MAIL")
:load-path "~/environment/local/share/emacs/site-lisp/mu4e"
:config
;; Define the contexts (configuration defined in a private file)
(when (fboundp 'set-mu4e-contexts)
Expand All @@ -4492,11 +4492,18 @@ I also redesigned the header buffer.
(when (mu4e-context-vars context)
(cdr (assq 'user-mail-address (mu4e-context-vars context)))))
mu4e-contexts))))
(use-package mu4e-bookmarks
:straight mu4e
:tags '("CONNECTED" "MAIL")
:config
;; Define the contexts (configuration defined in a private file)
(when (fboundp 'set-mu4e-bookmarks)
(set-mu4e-bookmarks)))

(use-package org-mu4e
:straight nil
:tags '("CONNECTED" "MAIL" "ORG")
:load-path "~/environment/local/share/emacs/site-lisp/mu4e")
:disabled t
:straight mu4e
:tags '("CONNECTED" "MAIL" "ORG"))
#+end_src

**** DONE Notification
Expand All @@ -4507,6 +4514,7 @@ It is quite simple but robust enough to not being bother every 5 min.

#+begin_src emacs-lisp
(use-package mu4e-alert
:straight (:host github :repo "seblemaguer/mu4e-alert" :branch "mu-1.7")
:after (sauron-mode-line)
:tags '("CONNECTED" "MAIL" "NOTIFICATION")
:config
Expand Down

0 comments on commit 11acf69

Please sign in to comment.