You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

85 lines
3.1 KiB

  1. # vim: filetype=neomuttrc
  2. # This is the general mutt config which has the settings that all accounts use.
  3. bind index,pager i noop
  4. bind index,pager g noop
  5. bind index \Cf noop
  6. source etc/muttcol
  7. source etc/aliases
  8. source personal.muttrc
  9. set sleep_time = 0
  10. set sort = 'reverse-date'
  11. set editor = $EDITOR
  12. #set copy = no
  13. set timeout = "5"
  14. set mail_check = "10"
  15. set mailcap_path = ~/.config/mutt/etc/mailcap
  16. set date_format="%m/%d %I:%M"
  17. set index_format="%2C %Z %?X?A& ? %D %-15.15F %s (%-4.4c)"
  18. set markers = no
  19. set mark_old = no
  20. set mime_forward = yes
  21. set smtp_authenticators = 'gssapi:login'
  22. set wait_key = no
  23. auto_view text/html
  24. auto_view application/pdf
  25. alternative_order text/plain text/enriched text/html
  26. set rfc2047_parameters = yes
  27. # General remappings
  28. bind editor <space> noop
  29. bind index G last-entry
  30. bind index gg first-entry
  31. bind pager j next-line
  32. bind pager k previous-line
  33. bind pager gg top
  34. bind pager G bottom
  35. bind index d half-down
  36. bind index u half-up
  37. bind index D delete-message
  38. bind index U undelete-message
  39. bind index F search
  40. bind index,pager R group-reply
  41. macro index,pager S '<sync-mailbox><shell-escape>pkill -RTMIN+12 i3blocks<enter>'
  42. macro index,pager \Cu |urlview\n
  43. macro index,pager ,, |urlview\n
  44. # View attachments properly.
  45. bind attach <return> view-mailcap
  46. set fast_reply # skip to compose when replying
  47. set fcc_attach # save attachments with the body
  48. unset mime_forward # forward attachments as part of body
  49. set forward_format = "Fwd: %s" # format of subject when forwarding
  50. set forward_decode # decode when forwarding
  51. set forward_quote # include message in forwards
  52. set reverse_name # reply as whomever it was to
  53. set include # include message in replies
  54. #Ctrl-R to mark all as read
  55. macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
  56. #sync email
  57. macro index O "<shell-escape>$HOME/.config/mutt/etc/mailsync.sh<enter>" "run offlineimap to sync all mail"
  58. macro index o "<shell-escape>$HOME/.config/mutt/etc/mailsync.sh -qf INBOX<enter>" "run offlineimap to sync inbox"
  59. #copy/move dialogs
  60. macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox"
  61. macro index M "<save-message>?<toggle-mailboxes>" "move a message to a mailbox"
  62. # Notmuch searching
  63. 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"
  64. macro index A "<limit>all\n" "show all messages (undo limit)"
  65. # Sidebar mappings
  66. set sidebar_visible = yes
  67. set sidebar_width = 20
  68. set sidebar_short_path = yes
  69. set sidebar_next_new_wrap = yes
  70. set mail_check_stats
  71. set sidebar_format = '%B%?F? [%F]?%* %?N?%N/? %?S?%S?'
  72. bind index,pager \Ck sidebar-prev
  73. bind index,pager \Cj sidebar-next
  74. bind index,pager \Co sidebar-open
  75. bind index,pager \Cp sidebar-prev-new
  76. bind index,pager \Cn sidebar-next-new
  77. bind index,pager B sidebar-toggle-visible