-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.muttrc
73 lines (62 loc) · 1.75 KB
/
.muttrc
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
set realname="Romain Bertrand"
set sendmail="/usr/local/bin/msmtp -a gandi"
set use_from=yes
set from="[email protected]"
# Mailbox configuration part
# I use maildir format
set folder="~/mail"
# Spool folder
#set spoolfile="~/mail/unsorted"
# Keep a copy of outgoing mails
set record="~/mail/sent"
# Where to store draft mails
set postponed="~/mail/draft"
# How do we sort messages ?
set sort_aux=last-date-received
# Display messages by threads
set sort=threads
# Mutt configuration part
# Locale inside Mutt
set locale="en_US"
# Charset inside Mutt
set charset="utf-8"
# Default editor (what else than vim? :D)
set editor="vim"
# Invoke a mini-pager, just at the top of the message you are currently
# reading, which shows you a list of n messages, in a reduced window.
set pager_index_lines=15
# Number of lines jumped while scrolling down in a message
set pager_context=5
# Charset used while sending messages
set send_charset="iso-8859-1:iso-8859-15"
# Never mark new emails as old
set mark_old=no
# I want to edit mail headers
set edit_headers
# Print a counter ticks every 100 msgs
set write_inc=100
# And display it every 100 msgs as well
set read_inc=100
# Forward/Quote part
# Date formatting
set date_format="%A %d %b %Y %H:%M:%S"
# "Tuesday 25 April 2042 13:33:37, Dark Vador wrote:"
set attribution="%d, %n wrote :"
# Forward message header
set forward_format="[Fwd: %s]"
# Delimit forwarded message with some quote delimiters
set forward_quote
set sleep_time=0
# Include files
# Colors setup
source ~/.mutt/colors
# Messages management
source ~/.mutt/headers
# Sidebar management (with colors)
source ~/.mutt/sidebar
# Mailboxes sidebar setup
source ~/.mutt/mailboxes
# Folder-hooks setup
#source ~/.mutt/folder-hooks
# Macros aliases
#source ~/.mutt/macros