Compare commits

...

2 Commits

Author SHA1 Message Date
Marcel Kapfer 8e724923bc
(Org/Tasks) Show started and waiting tasks in context agendas
Publish / publish (push) Successful in 12s Details
2023-06-15 23:16:38 +02:00
Marcel Kapfer d4aa2eee92
(mu4e) Add Debian package as possible load path 2023-06-15 23:14:27 +02:00
1 changed files with 5 additions and 2 deletions

View File

@ -1421,7 +1421,7 @@ For easily choosing the next thing to work on I give each of my tasks a context
`(,(concat "c" (cdr item))
,(concat (substring (car item) 1) " context")
tags-todo
,(concat (car item) "/!NEXT"))))
,(concat (car item) "/!+NEXT|+STARTED|+WAITING"))))
#+end_src
** Quick Capture from everywhere
@ -2260,13 +2260,16 @@ Not all distributions that I use have a enough up-to-date package of mu/maildir-
(let* ((mu4e-site-lisp-path "/share/emacs/site-lisp/mu4e")
(mu4e-load-path-usr (concat "/usr" mu4e-site-lisp-path))
(mu4e-load-path-usr-local (concat "/usr/local" mu4e-site-lisp-path))
(mu4e-load-path-nix (concat (getenv "HOME") "/.nix-profile" mu4e-site-lisp-path)))
(mu4e-load-path-nix (concat (getenv "HOME") "/.nix-profile" mu4e-site-lisp-path))
(mu4e-load-path-debian "/usr/share/emacs/site-lisp/elpa"))
(cond ((file-directory-p mu4e-load-path-nix)
mu4e-load-path-nix)
((file-directory-p mu4e-load-path-usr-local)
mu4e-load-path-usr-local)
((file-directory-p mu4e-load-path-usr)
mu4e-load-path-usr)
((file-directory-p mu4e-load-path-debian)
mu4e-load-path-debian)
(t (error "mu4e not found!"))))))
#+end_src