|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # vim: filetype=neomuttrc
- # This is the general mutt config which has the settings that all accounts use.
- source etc/muttcol
- bind index,pager i noop
- bind index,pager g noop
- source personal.muttrc
- set sleep_time = 0
- set sort = 'reverse-date'
- set editor = vim
- #set copy = no
- set timeout = "5"
- set mail_check = "10"
- set mailcap_path = ~/.config/mutt/etc/mailcap
- set date_format="%m/%d %I:%M"
- set index_format="%2C %Z %D %-15.15F %s (%-4.4c)"
- set markers = no
- set mark_old = no
- auto_view text/html
- auto_view application/pdf
- alternative_order text/plain text/enriched text/html
-
- mono bold bold
- mono underline underline
- mono indicator reverse
- color index yellow default '.*'
- color index_author red default '.*'
- color index_number blue default
- color index_subject cyan default '.s'
- color index_size green default
- color normal default default
- color body brightred default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
- color body brightblue default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
-
- bind editor <space> noop
- bind index G last-entry
- bind index gg first-entry
- bind index d half-down
- bind index u half-up
- bind index D delete-message
- bind index U undelete-message
- bind index F search
- bind index,pager R group-reply
- macro index,pager S '<sync-mailbox>
- macro index,pager \Cu |urlview\n
- bind index \Cf noop
- macro index \Cf "<enter-command>unset wait_key<enter><shell-escape>read -p 'notmuch query: ' x; echo \$x >~/.cache/mutt_terms<enter><limit>~i \"\`notmuch search --output=messages \$(cat ~/.cache/mutt_terms) | head -n 600 | perl -le '@a=<>;chomp@a;s/\^id:// for@a;$,=\"|\";print@a'\`\"<enter>" "show only messages matching a notmuch pattern"
- macro index A "<limit>all\n" "show all messages (undo limit)"
|