blob: 46596c9f1ae17c80de56b0c1f3401d4af200de95 (
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
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
|
# https://neomutt.org/guide/reference.html
# set quit = ask-yes
set realname = "Jake Koroman"
set from = "jake@jakekoroman.com"
set sendmail = "msmtp -a personal"
set pager_stop=yes
# set sort = reverse-date
set sort = threads
set sort_aux = reverse-last-date-received
set virtual_spoolfile=yes
set folder=~/mail/.notmuch/
virtual-mailboxes "inbox" "notmuch://?query=tag:inbox"
virtual-mailboxes "archive" "notmuch://?query=tag:archive"
virtual-mailboxes "sent" "notmuch://?query=tag:sent"
virtual-mailboxes "trash" "notmuch://?query=tag:trash"
set record = "~/mail/personal/Sent"
set nm_record = yes
set nm_record_tags = "sent"
set fast_reply
set fcc_attach
set forward_format = "Fwd: %s"
set forward_quote
set include
set reverse_name
set markers = no
set mark_old = no
set date_format = "%m/%d/%y"
set index_format = "%2C: %d %Z %-12.12g %-15.15L (%<l?%4l&%4c>) %s"
set header_cache = $XDG_CACHE_HOME/mutt/header_cache
macro index a "<modify-labels>+archive -unread -inbox<enter>" "Archive message"
macro index t "<modify-labels>+todo -unread<enter>" "Todo message"
macro index I "<modify-labels>+inbox -archive -trash<enter>" "Inbox message"
macro index d "<modify-labels>+trash -unread -inbox<enter>" "Trash message"
macro index N "<modify-labels>-unread<enter>" "Read message"
macro index c "<change-vfolder>?" "Change to vfolder overview"
macro index \\\\ "<vfolder-from-query>" "Search mailbox"
bind index,pager l modify-labels
bind index j noop
bind index k noop
bind index J noop
bind index K noop
bind index <space> noop
bind index,pager x noop
bind index,pager Q exit
bind index g noop
bind index gg first-entry
bind index G last-entry
bind index <space> tag-entry
bind browser o select-entry
bind pager o view-attachments
bind attach n exit
bind attach o view-attach
bind index,attach,browser e next-entry
bind index,attach,browser i previous-entry
bind index o display-message
bind index s sort-mailbox
bind index k toggle-read # only show unread
bind index \Cu previous-page
bind index \Cd next-page
bind pager e next-page
bind pager i previous-page
bind pager E next-entry
bind pager I previous-entry
bind index,pager R group-reply
bind pager g noop
bind index M noop
bind index,pager C noop
bind pager n exit
bind pager k search-next
#color index green default '.*'
#color index_author magenta default '.*'
#color index_number yellow default
#color index_subject cyan default '.*'
|