Sun, 01 May 2016 00:52:43 -0400
auto-pairs is too much trouble
287
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
1 | # IMAP |
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
2 | source ~/.mutt/roomag/config |
286 | 3 | |
4 | unset imap_passive | |
5 | set imap_idle = yes | |
6 | set imap_check_subscribed = yes | |
7 | set imap_keepalive = 300 | |
8 | set imap_peek = no | |
9 | set mark_old = no | |
287
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
10 | set ssl_usesystemcerts = yes |
286 | 11 | |
12 | # Behavior | |
13 | set beep = no | |
14 | set beep_new = no | |
15 | set mail_check = 120 | |
16 | set move = no | |
17 | set pager_stop = yes | |
18 | set pager_context = 2 | |
19 | set menu_scroll = yes | |
287
0e4736894e00
break out roomag config
Meredith Howard <mhoward@roomag.org>
parents:
286
diff
changeset
|
20 | set mailcap_path = ~/.mutt/mailcap |
286 | 21 | set assumed_charset = "utf-8:iso8859-1" |
22 | set autoedit = yes | |
23 | set edit_headers = yes | |
24 | set editor = "vim +'set tw=72 noawa'" | |
25 | ||
26 | auto_view text/html | |
291 | 27 | alternative_order text/plain text/html |
286 | 28 | |
29 | bind index <F1> help | |
30 | bind index / search | |
31 | bind index ? search-reverse | |
32 | bind index n search-next | |
33 | bind index N search-opposite | |
34 | ||
35 | bind index gg first-entry | |
36 | bind index G last-entry | |
37 | bind index \Cu half-up | |
38 | bind index \Cd half-down | |
39 | ||
40 | bind pager J next-unread | |
41 | bind pager K previous-unread | |
42 | ||
43 | bind pager <up> previous-line | |
44 | bind pager <down> next-line | |
45 | bind pager gg top | |
46 | bind pager G bottom | |
47 | bind pager \Cu half-up | |
48 | bind pager \Cd half-down | |
49 | ||
50 | bind pager r reply | |
51 | bind pager R group-reply | |
52 | bind pager l list-reply | |
53 | ||
54 | bind pager <F1> help | |
55 | bind pager / search | |
56 | bind pager ? search-reverse | |
57 | bind pager n search-next | |
58 | bind pager N search-opposite | |
59 | ||
60 | push <first-entry> | |
61 | ||
62 | # Appearance | |
63 | set sort = reverse-date-sent | |
64 | set status_on_top = yes | |
65 | set pager_index_lines = 10 | |
66 | set wrap = -15 | |
67 | set markers = no | |
68 | ||
69 | set date_format = "%m-%d %H:%M" | |
70 | set index_format = "%2C %Z %D %-30.30F %s" | |
71 | ||
72 | ignore * | |
73 | unignore from date subject to cc | |
74 | unignore organization organisation x-mailing-list: posted-to: | |
75 | ||
76 | hdr_order subject from to cc date | |
77 | ||
78 | # jellybeans-ish | |
79 | color attachment color162 color233 | |
80 | color bold color183 color233 | |
81 | color hdrdefault color215 color233 | |
82 | color indicator brightwhite color234 | |
83 | color markers color215 color233 | |
84 | color message color188 color233 | |
85 | color normal color188 color233 | |
86 | color search brightgreen color233 | |
87 | color signature color222 color233 | |
88 | color status color30 color235 | |
89 | color tilde color244 color233 | |
90 | color tree color104 color233 | |
91 | # color underline brightmagenta color233 | |
92 | color error color167 color233 | |
93 | ||
94 | # Colours for items in the index | |
95 | color index color188 color233 ~A | |
96 | color index default color233 ~R | |
97 | color index color110 color233 ~U | |
98 | color index color213 color233 ~F | |
99 | color index color217 color233 ~T | |
100 | color index color126 color233 ~D | |
101 | ||
102 | # Highlights inside message body | |
103 | ||
104 | # URLs | |
105 | color body color103 color233 "https?://[^ \"\t\r\n>]+" | |
106 | color body color103 color233 "mailto:[^ \"\t\r\n>]+" | |
107 | ||
108 | # Email addresses. | |
109 | color body color103 color233 "[-a-z_0-9.%$+]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+" | |
110 | ||
111 | color quoted color107 color233 | |
112 | color quoted1 color58 color233 | |
113 | color quoted2 color244 color233 | |
114 | color quoted3 color233 color233 |