aboutsummaryrefslogtreecommitdiff
path: root/mutt
diff options
context:
space:
mode:
Diffstat (limited to 'mutt')
-rw-r--r--mutt/mailcap11
-rw-r--r--mutt/muttrc42
2 files changed, 46 insertions, 7 deletions
diff --git a/mutt/mailcap b/mutt/mailcap
new file mode 100644
index 00000000..3ce21d24
--- /dev/null
+++ b/mutt/mailcap
@@ -0,0 +1,11 @@
+# Simple mailcap for a terminal-only Mutt; I generally download everything
+# anyway and deal with it on a shell, or pass it to a GUI machine.
+#
+text/html; lynx -dump -force_html %s; \
+ copiousoutput; \
+ description=HTML; \
+ nametemplate=%s.html
+application/pdf; pdftotext -layout -nopgbrk -q %s -; \
+ copiousoutput; \
+ description=PDF; \
+ nametemplate=%s.pdf
diff --git a/mutt/muttrc b/mutt/muttrc
index 572ea165..8ff08aa5 100644
--- a/mutt/muttrc
+++ b/mutt/muttrc
@@ -1,10 +1,3 @@
-# Prefer the plain text part of multipart emails, followed by any enriched text
-# part (?), followed by the HTML part, followed by any other parts. Decode the
-# text/html part with .mailcap's chosen program (I favour Lynx).
-#
-alternative_order text/plain text/enriched text/html *
-auto_view text/html
-
# If an outgoing message looks like I meant to attach something, and there
# isn't an attachment, prompt me to make sure I haven't forgotten it.
# I normally don't like this sort of nagging, but I'm making an exception in
@@ -69,6 +62,29 @@ set include
#
set index_format = '%4C %Z %{%b %d %Y} %-15.15L (%?l?%4l&%4c?) %?H?[%H] ?%s'
+# Set a custom mailcap, rather than leaning on the system's
+#
+set mailcap_path = \
+ ~/.config/mutt/mailcap
+
+# When displaying messages with multiple alternatives for display, prefer any
+# plain text one, but failing that, fall back to enriched text (hey, it could
+# happen...)
+#
+alternative_order \
+ text/plain \
+ text/enriched \
+ text/html \
+ application/pdf \
+ *
+
+# Decode any text/html and application/pdf parts with .mailcap's specified
+# programs.
+#
+auto_view \
+ text/html \
+ application/pdf
+
# Don't show any nasty little markers at the start of wrapped lines. That's
# the sort of thing Vim cares about, if need be.
#
@@ -232,6 +248,18 @@ macro index,pager \\a \
'<pipe-message>abook --add-email-quiet<enter>' \
'Add sender address to abook'
+# Janky notmuch-mutt search macro, cleaned up a little
+macro index \\l '\
+<enter-command>set my_pipe_decode=$pipe_decode \
+ my_wait_key=$wait_key \
+ nopipe_decode \
+ nowait_key<enter>\
+<shell-escape>notmuch-mutt --prompt search --remove-dups<enter>\
+<change-folder-readonly>~/.cache/notmuch/mutt/results<enter>\
+<enter-command>set pipe_decode=$my_pipe_decode \
+ wait_key=$my_wait_key<enter>' \
+ 'notmuch: search mail'
+
# Shortcut to reload configuration
set my_muttrc \
= ~/.config/mutt/muttrc