Commit 2bf9eac200ba
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -1196,7 +1196,7 @@
(global-set-key (kbd "C-c a") 'org-agenda)
#+END_SRC
-Then set custom agendas..
+Then set custom agendas..
#+BEGIN_SRC emacs-lisp
(setq org-agenda-custom-commands
@@ -1526,6 +1526,14 @@
(require-maybe 'mu4e)
#+END_SRC
+ Let's /detect/ if mu is installed as mu-git or mu. It's a
+ workaround I need to use because of the name conflict between mu
+ and the mails-utils mu command.
+
+ #+BEGIN_SRC emacs-lisp
+ ;; (setq mu4e-mu-binary "/usr/local/bin/mu")
+ #+END_SRC
+
Set the maildir, folders and stuff.
#+BEGIN_SRC emacs-lisp
@@ -1537,6 +1545,14 @@
(setq mu4e-get-mail-command "offlineimap")
(setq mu4e-html2text-command "html2text")
#+END_SRC
+
+
+ #+BEGIN_SRC emacs-lisp
+ (add-to-list 'mu4e-view-actions '("retag" . mu4e-action-retag-message))
+ (add-to-list 'mu4e-headers-actions '("retag" . mu4e-action-retag-message))
+ #+END_SRC
+
+
** TODO Twitter
Let's have a twitter timeline in Emacs, just for fun ;-P.
@@ -1545,6 +1561,3 @@
#+BEGIN_SRC emacs-lisp
(require-package 'twittering-mode)
#+END_SRC
-
-
-