Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

89 lignes
3.3 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="%y/%m/%d %I:%M"
  17. set index_format="%2C %zs %?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/pgp-encrypted
  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. bind index \031 previous-undeleted # Mouse wheel
  42. bind index \005 next-undeleted # Mouse wheel
  43. bind pager \031 previous-line # Mouse wheel
  44. bind pager \005 next-line # Mouse wheel
  45. macro index,pager S <sync-mailbox>
  46. macro index,pager \Cu "|urlscan -r 'echo {} | parallel xargs $BROWSER'"\n
  47. macro index,pager ,, "|urlscan -r 'echo {} | parallel xargs $BROWSER'"\n
  48. # View attachments properly.
  49. bind attach <return> view-mailcap
  50. set fast_reply # skip to compose when replying
  51. set fcc_attach # save attachments with the body
  52. unset mime_forward # forward attachments as part of body
  53. set forward_format = "Fwd: %s" # format of subject when forwarding
  54. set forward_decode # decode when forwarding
  55. set forward_quote # include message in forwards
  56. set reverse_name # reply as whomever it was to
  57. set include # include message in replies
  58. #Ctrl-R to mark all as read
  59. macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
  60. #sync email
  61. macro index O "<shell-escape>$HOME/.config/mutt/etc/mailsync.sh<enter>" "run offlineimap to sync all mail"
  62. macro index o "<shell-escape>$HOME/.config/mutt/etc/mailsync.sh -qf INBOX<enter>" "run offlineimap to sync inbox"
  63. #copy/move dialogs
  64. macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox"
  65. macro index M "<save-message>?<toggle-mailboxes>" "move a message to a mailbox"
  66. # Notmuch searching
  67. 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"
  68. macro index A "<limit>all\n" "show all messages (undo limit)"
  69. # Sidebar mappings
  70. set sidebar_visible = yes
  71. set sidebar_width = 20
  72. set sidebar_short_path = yes
  73. set sidebar_next_new_wrap = yes
  74. set mail_check_stats
  75. set sidebar_format = '%B%?F? [%F]?%* %?N?%N/? %?S?%S?'
  76. bind index,pager \Ck sidebar-prev
  77. bind index,pager \Cj sidebar-next
  78. bind index,pager \Co sidebar-open
  79. bind index,pager \Cp sidebar-prev-new
  80. bind index,pager \Cn sidebar-next-new
  81. bind index,pager B sidebar-toggle-visible