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.
 
 
 
 

163 lines
7.5 KiB

  1. # vim: filetype=neomuttrc
  2. # This file contains all of mutt-wizard's default settings.
  3. # mutt-wizard will have this file sourced from your muttrc.
  4. # In the interest of seamless updating, do not edit this file.
  5. # If you want to override any settings, set those in your muttrc.
  6. set mailcap_path = /usr/local/share/mutt-wizard/mailcap
  7. set date_format="%y/%m/%d %I:%M%p"
  8. set index_format="%2C %Z %?X?A& ? %D %-15.15F %s (%-4.4c)"
  9. set sort = 'reverse-date'
  10. set smtp_authenticators = 'gssapi:login'
  11. set query_command = "abook --mutt-query '%s'"
  12. set rfc2047_parameters = yes
  13. set sleep_time = 0 # Pause 0 seconds for informational messages
  14. set markers = no # Disables the `+` displayed at line wraps
  15. set mark_old = no # Unread mail stay unread until read
  16. set mime_forward = yes # attachments are forwarded with mail
  17. set wait_key = no # mutt won't ask "press key to continue"
  18. set fast_reply # skip to compose when replying
  19. set fcc_attach # save attachments with the body
  20. set forward_format = "Fwd: %s" # format of subject when forwarding
  21. set forward_quote # include message in forwards
  22. set reverse_name # reply as whomever it was to
  23. set include # include message in replies
  24. set mail_check=60 # to avoid lags using IMAP with some email providers (yahoo for example)
  25. auto_view text/html # automatically show html (mailcap uses lynx)
  26. auto_view application/pgp-encrypted
  27. set display_filter = "tac | sed '/\\\[-- Autoview/,+1d' | tac" # Suppress autoview messages.
  28. alternative_order text/plain text/enriched text/html
  29. bind index,pager i noop
  30. bind index,pager g noop
  31. bind index \Cf noop
  32. # General rebindings
  33. bind index j next-entry
  34. bind index k previous-entry
  35. bind attach <return> view-mailcap
  36. bind attach l view-mailcap
  37. bind editor <space> noop
  38. bind index G last-entry
  39. bind index gg first-entry
  40. bind pager,attach h exit
  41. bind pager j next-line
  42. bind pager k previous-line
  43. bind pager l view-attachments
  44. bind index D delete-message
  45. bind index U undelete-message
  46. bind index L limit
  47. bind index h noop
  48. bind index l display-message
  49. bind index,query <space> tag-entry
  50. #bind browser h goto-parent
  51. macro browser h '<change-dir><kill-line>..<enter>' "Go to parent folder"
  52. bind index,pager H view-raw-message
  53. bind browser l select-entry
  54. bind pager,browser gg top-page
  55. bind pager,browser G bottom-page
  56. bind index,pager,browser d half-down
  57. bind index,pager,browser u half-up
  58. bind index,pager S sync-mailbox
  59. bind index,pager R group-reply
  60. bind index \031 previous-undeleted # Mouse wheel
  61. bind index \005 next-undeleted # Mouse wheel
  62. bind pager \031 previous-line # Mouse wheel
  63. bind pager \005 next-line # Mouse wheel
  64. bind editor <Tab> complete-query
  65. #set crypt_autosign = yes
  66. #set crypt_opportunistic_encrypt = yes
  67. #set pgp_self_encrypt = yes
  68. #set pgp_default_key = 'your@gpgemailaddre.ss'
  69. macro index,pager a "<enter-command>set my_pipe_decode=\$pipe_decode pipe_decode<return><pipe-message>abook --add-email<return><enter-command>set pipe_decode=\$my_pipe_decode; unset my_pipe_decode<return>" "add the sender address to abook"
  70. macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
  71. macro index O "<shell-escape>mbsync -a<enter>" "run mbsync to sync all mail"
  72. macro index \Cf "<enter-command>unset wait_key<enter><shell-escape>printf 'Enter a search term to find with notmuch: '; read x; echo \$x >~/.cache/mutt_terms<enter><limit>~i \"\`notmuch search --output=messages \$(cat ~/.cache/mutt_terms) | head -n 600 | perl -le '@a=<>;s/\^id:// for@a;$,=\"|\";print@a' | perl -le '@a=<>; chomp@a; s/\\+/\\\\+/ for@a;print@a' \`\"<enter>" "show only messages matching a notmuch pattern"
  73. macro index A "<limit>all\n" "show all messages (undo limit)"
  74. # Sidebar mappings
  75. set sidebar_visible = yes
  76. set sidebar_width = 20
  77. set sidebar_short_path = yes
  78. set sidebar_next_new_wrap = yes
  79. set mail_check_stats
  80. set sidebar_format = '%D%?F? [%F]?%* %?N?%N/? %?S?%S?'
  81. bind index,pager \Ck sidebar-prev
  82. bind index,pager \Cj sidebar-next
  83. bind index,pager \Co sidebar-open
  84. bind index,pager \Cp sidebar-prev-new
  85. bind index,pager \Cn sidebar-next-new
  86. bind index,pager B sidebar-toggle-visible
  87. # Default index colors:
  88. color index yellow default '.*'
  89. color index_author red default '.*'
  90. color index_number blue default
  91. color index_subject cyan default '.*'
  92. # New mail is boldened:
  93. color index brightyellow black "~N"
  94. color index_author brightred black "~N"
  95. color index_subject brightcyan black "~N"
  96. # Tagged mail is highlighted:
  97. color index brightyellow blue "~T"
  98. color index_author brightred blue "~T"
  99. color index_subject brightcyan blue "~T"
  100. # Other colors and aesthetic settings:
  101. mono bold bold
  102. mono underline underline
  103. mono indicator reverse
  104. mono error bold
  105. color normal default default
  106. color indicator brightblack white
  107. color sidebar_highlight red default
  108. color sidebar_divider brightblack black
  109. color sidebar_flagged red black
  110. color sidebar_new green black
  111. color normal brightyellow default
  112. color error red default
  113. color tilde black default
  114. color message cyan default
  115. color markers red white
  116. color attachment white default
  117. color search brightmagenta default
  118. color status brightyellow black
  119. color hdrdefault brightgreen default
  120. color quoted green default
  121. color quoted1 blue default
  122. color quoted2 cyan default
  123. color quoted3 yellow default
  124. color quoted4 red default
  125. color quoted5 brightred default
  126. color signature brightgreen default
  127. color bold black default
  128. color underline black default
  129. color normal default default
  130. # Regex highlighting:
  131. color header blue default ".*"
  132. color header brightmagenta default "^(From)"
  133. color header brightcyan default "^(Subject)"
  134. color header brightwhite default "^(CC|BCC)"
  135. color body brightred default "[\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+" # Email addresses
  136. color body brightblue default "(https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+" # URL
  137. color body green default "\`[^\`]*\`" # Green text between ` and `
  138. color body brightblue default "^# \.*" # Headings as bold blue
  139. color body brightcyan default "^## \.*" # Subheadings as bold cyan
  140. color body brightgreen default "^### \.*" # Subsubheadings as bold green
  141. color body yellow default "^(\t| )*(-|\\*) \.*" # List items as yellow
  142. color body brightcyan default "[;:][-o][)/(|]" # emoticons
  143. color body brightcyan default "[;:][)(|]" # emoticons
  144. color body brightcyan default "[ ][*][^*]*[*][ ]?" # more emoticon?
  145. color body brightcyan default "[ ]?[*][^*]*[*][ ]" # more emoticon?
  146. color body red default "(BAD signature)"
  147. color body cyan default "(Good signature)"
  148. color body brightblack default "^gpg: Good signature .*"
  149. color body brightyellow default "^gpg: "
  150. color body brightyellow red "^gpg: BAD signature from.*"
  151. mono body bold "^gpg: Good signature"
  152. mono body bold "^gpg: BAD signature from.*"
  153. color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-f][0-9a-f])*@)?((([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)(:[0-9]+)?)|([a-z0-9_.!~*'()$,;:@&=+-]|%[0-9a-f][0-9a-f])+)(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?(#([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?|(www|ftp)\\.(([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?(:[0-9]+)?(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?(#([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?)[^].,:;!)? \t\r\n<>\"]"