blob: 8599f5233ac97ce0919bbb3742721860d0f5578c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
|