mutt: Update neomutt configuration

Changed some colors, some keymaps and made it more flexible for new mail
account setups. Also removed most of the static gmail-related account
stuff since I don't need this in my public repo.
This commit is contained in:
Marty Oehme 2023-12-12 12:37:13 +01:00
parent 48ed4818f2
commit 78987c493e
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
9 changed files with 36 additions and 97 deletions

View file

@ -1,5 +1,5 @@
# open html emails in browser (or whatever GUI program is used to render HTML)
text/html; xdg-open %s ; nametemplate=%s.html
text/html; open %s ; nametemplate=%s.html
# render html emails inline using magic (uncomment the line below to use lynx instead)
# text/html; lynx -assume_charset=%{charset} -display_charset=utf-8 -collapse_br_tags -dump %s; nametemplate=%s.html; copiousoutput
text/html; render-prettyhtml %s; nametemplate=%s.html; copiousoutput;
@ -20,9 +20,9 @@ video/*; setsid mpv --quiet %s &; copiousoutput
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet; sc-im %s; needsterminal
# open anything else externally
application/pdf; xdg-open %s;
application/pdf; open %s;
application/*; mkdir -p /tmp/mutt \; cp %s /tmp/mutt \; xdg-open /tmp/mutt/$(basename %s) &
application/*; mkdir -p /tmp/mutt \; cp %s /tmp/mutt \; open /tmp/mutt/$(basename %s) &
application/pgp-encrypted; gpg -d '%s'; copiousoutput;
application/pgp-keys; gpg --import '%s'; copiousoutput;