diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2018-04-11 20:51:34 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2018-12-30 12:27:23 -0600 |
commit | daed42a7371b5f26d69826e52560804e23d48fb6 (patch) | |
tree | ff4a00720a65962033694b8d79eb445345180fd6 /mutt/.muttrc | |
parent | 10da5377351ae0bbfe75343b95d6a81ee2e217aa (diff) |
mutt: add configuration
Diffstat (limited to 'mutt/.muttrc')
-rw-r--r-- | mutt/.muttrc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mutt/.muttrc b/mutt/.muttrc new file mode 100644 index 0000000..8599f52 --- /dev/null +++ b/mutt/.muttrc @@ -0,0 +1,35 @@ +set alias_file = ~/.mutt/aliases + +source ~/.mutt/accounts +source ~/.mutt/aliases +source ~/.mutt/colors +source ~/.mutt/headers +source ~/.mutt/keys +source ~/.mutt/sidebar + +# Character sets +set send_charset = "utf-8" +set assumed_charset = "utf-8" + +# Make sure vim knows mutt is a mail client and that we compose utf8 +set editor = "vim -c 'set syntax=mail ft=mail enc=utf-8'" + +# Local caching +set header_cache = ~/.mutt/cache/headers +set message_cachedir = ~/.mutt/cache/bodies +set certificate_file = ~/.mutt/certificates + +# Sorting +set sort = threads +set sort_aux = last-date-received + +# Stop page down from moving to the next message when we reach the end +set pager_stop = yes + +# Display a mini index while reading messages +set pager_index_lines = 11 + +# Prefer reading plain text, but handle HTML if it comes to it +auto_view text/html # view html automatically +alternative_order text/plain text/enriched text/html # save html for last + |