-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.muttrc
91 lines (82 loc) · 3.77 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Personal
set from = "[email protected]"
set realname = "Emre Hasegeli"
# Character encoding
set assumed_charset = "utf-8:iso-8859-1:us-ascii"
set charset = "utf-8"
set config_charset = "utf-8"
set send_charset = "utf-8"
# Dates
set date_format = "%Y-%m-%d %H:%M"
# Gmail
set folder = "imaps://[email protected]@imap.gmail.com"
set smtp_url = "smtps://[email protected]@smtp.gmail.com/"
set imap_keepalive = 60
set spoolfile = "+INBOX"
set postponed = "+[Gmail]/Drafts"
set move = no # Stop asking to "move read messages to mbox"!
set copy = no # Do not copy sent mail. Gmail smtp already does this.
set delete = yes
# Local folders
set header_cache = ~/.mutt/cache/headers
set message_cachedir = ~/.mutt/cache/bodies
set certificate_file = ~/.mutt/certificates
# Message display
set sort = "threads"
set pager_stop # Don't skip msgs on next page.
# Key bindings
bind index,pager r group-reply # Always reply to all.
bind index R imap-fetch-mail
# Macros
bind editor <space> noop
macro index gi "<change-folder>=INBOX<enter>" "Go to inbox"
macro index ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
macro index gs "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to sent Mail"
macro index gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"
macro index gt "<change-folder>=[Gmail]/Trash<enter>" "Go to trash"
macro index gj "<change-folder>=[Gmail]/Spam<enter>" "Go to junk"
macro index,pager mi "<save-message>=INBOX<enter>" "Move to inbox"
macro index,pager ma "<save-message>=[Gmail]/All Mail<enter>" "Archive"
macro index,pager mt "<save-message>=[Gmail]/Trash<enter>" "Move to trash"
macro index,pager mj "<save-message>=[Gmail]/Spam<enter>" "Move to junk"
set noconfirmappend # Just append, don't hassle me.
# Editing
set include # Include the message in replies.
set fast_reply
set editor = "vim -c 'set colorcolumn=73' -c 'set spell spelllang=en'"
# Colors
color normal white black
color attachment brightyellow black
color hdrdefault cyan black
color indicator black cyan
color markers brightred black
color signature cyan black
color status brightgreen blue
color tilde blue black
color tree red black
color index green default ~p # i am to/cc
color index cyan default ~P # from me
color index brightyellow default ~N # new
color index brightyellow default ~O # old
color index magenta default ~F # flagged
color index blue default ~T # tagged
color index red default ~D # deleted
color index blue default ~Q # replied
color index black cyan ~v # collapsed thread
color header brightgreen black ^From:
color header brightcyan black ^To:
color header brightcyan black ^Reply-To:
color header brightcyan black ^Cc:
color header brightblue black ^Subject:
color quoted magenta default
color quoted1 cyan default
color quoted2 green default
color quoted3 magenta default
color quoted4 cyan default
color quoted5 green default
color quoted6 magenta default
color quoted7 cyan default
color body brightcyan default "(^| )\\*[^*]+\\*( |$)" # Bold
color body brightcyan default "(^| )_[^_]+_( |$)" # Underline
color body brightcyan default "(^| )/[^/]+/( |$)" # Italic
alias pgsql-hackers PostgreSQL Hackers <[email protected]>