-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.muttrc
77 lines (67 loc) · 2.06 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
# my mailboxes
source ~/.mutt/mailbox_hooks
# Keybindings
source ~/.mutt/mailbox_keybindings
#--------------#
# Address book
#--------------#
set alias_file= ~/.mutt/aliases
set sort_alias= alias
set reverse_alias=yes
source $alias_file
#--------------#
# Basic config
#--------------#
set editor = vim
set edit_headers = yes # show headers in vim when editing
# mail.vim function puts cursor below this, however
set mark_old = no # no distinction between new unread and old unread
set pager_stop = yes # keep the pager from srcolling to the next message
set markers = no # cut out those wrapped-line '+'s
set fast_reply = yes # skip reply-to and subject for replies
set sendmail_wait=-1 # Don't wait around for sendmail.
set mail_check = 60 # Check for new mail every 60 seconds
set strict_threads
set imap_list_subscribed = no
#-----------------------------#
# Collapse threads by default #
# http://www.mail-archive.com/[email protected]/msg08552.html
#-----------------------------#
bind index P collapse-all
folder-hook . push "P"
#--------------#
# Index format #
#--------------#
# default: "%4C %Z %{%b %d} %-15.15L (%4l) %s"
set index_format = "%4C %Z %{%b %d} %-15.15L (%2E) (%4l) %s"
#-------------#
# Colorscheme
#-------------#
source ~/.mutt/themes/mutt-colors-solarized-dark-256
#--------------------------------------------------#
# Pager-view stuff (thanks to Randall Wood's page)
#--------------------------------------------------#
set pager_context=5
set pager_index_lines=4
set tilde
unset resolve
bind pager <up> previous-line
bind pager <down> next-line
#---------------------#
# Navigation bindings
#---------------------#
bind pager \CH display-toggle-weed
bind pager j next-page
bind pager k previous-page
bind pager h previous-undeleted
bind pager l next-undeleted
bind pager [ previous-entry
bind pager ] next-entry
#----------------#
# Other bindings #
#----------------#
bind index gr group-reply
#-------------------#
# External commands
#-------------------#
macro pager "\Cb" "<pipe-message>urlview<enter>"