Advertisement
JayAurabind

muttrc

May 22nd, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. ## General options
  2. set imap_check_subscribed
  3. set imap_keepalive = 300
  4. unset imap_passive
  5. set mail_check = 60
  6. set mbox_type=Maildir
  7. set header_cache=~/.mutt/cache/headers
  8. set message_cachedir=~/.mutt/cache/bodies
  9. set certificate_file=~/.mutt/certificates
  10. set tmpdir=~/.mutt/temp # where to keep temp files
  11. set signature=~/.mutt/sig # my signature file
  12. set move = no
  13. set include
  14. set sort = 'threads'
  15. set sort_aux = 'reverse-last-date-received'
  16. set auto_tag = yes
  17. set beep_new
  18. #ignore "Authentication-Results:"
  19. #ignore "DomainKey-Signature:"
  20. #ignore "DKIM-Signature:"
  21. hdr_order Date From To Cc
  22. alternative_order text/plain text/html *
  23. auto_view text/html
  24. bind editor <Tab> complete-query
  25. bind editor ^T complete
  26. bind editor <space> noop
  27.  
  28. # Goobook Google Contatcts
  29. set query_command="goobook query '%s'"
  30.  
  31. # Solarized Theme
  32.  
  33. source /home/jay/.mutt/themes/arch.theme
  34.  
  35. # Sidebar Patch --------------------------------------
  36. set sidebar_delim = ' │'
  37. set sidebar_visible = yes
  38. set sidebar_width = 36
  39. color sidebar_new color221 color233
  40.  
  41. # Sidebar Navigation ---------------------------------
  42. bind index,pager <down> sidebar-next
  43. bind index,pager <up> sidebar-prev
  44. bind index,pager <right> sidebar-open
  45.  
  46. # GPG stuff
  47. source ~/.mutt/gpg.rc
  48. source "gpg -dq ~/.mutt/.my-pwds.gpg |"
  49.  
  50.  
  51.  
  52. # Account 3: Gmail
  53. source ~/.mutt/gmail.muttrc
  54. # Here we use the $folder variable that has just been set in the sourced file.
  55. # We must set it right now otherwise the 'folder' variable will change in the next sourced file.
  56. folder-hook $folder 'source ~/.mutt/gmail.muttrc'
  57.  
  58. # Account 2: Inventati
  59. source ~/.mutt/inventati.muttrc
  60. # Here we use the $folder variable that has just been set in the sourced file.
  61. # We must set it right now otherwise the 'folder' variable will change in the next sourced file.
  62. folder-hook $folder 'source ~/.mutt/inventati.muttrc'
  63.  
  64. # Account 1: Aurabindo.in
  65. source ~/.mutt/aurabindo.muttrc
  66. # Here we use the $folder variable that has just been set in the sourced file.
  67. # We must set it right now otherwise the 'folder' variable will change in the next sourced file.
  68. folder-hook $folder 'source ~/.mutt/aurabindo.muttrc'
  69.  
  70. ## Shortcuts
  71. macro index,pager <f2> '<sync-mailbox><enter-command>source ~/.mutt/gmail.muttrc<enter><change-folder>!<enter>'
  72. macro index,pager <f3> '<sync-mailbox><enter-command>source ~/.mutt/inventati.muttrc<enter><change-folder>!<enter>'
  73. macro index,pager <f4> '<sync-mailbox><enter-command>source ~/.mutt/aurabindo.muttrc<enter><change-folder>!<enter>'
  74. macro index 'c' '<change-folder>?<change-dir><home>^K=<enter>'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement