neomuttrc (1603B)
1 2 # Store message headers locally to speed things up. 3 # If hcache is a folder, Mutt will create sub cache folders for each account which may speeds things up even more. 4 set header_cache = ~/.cache/mutt 5 6 # Store messages locally to speed things up, like searching message bodies. 7 # Can be the same folder as header_cache. 8 # This will cost important disk usage according to your e-mail amount. 9 set message_cachedir = "~/.cache/mutt" 10 11 # Specify where to save and/or look for postponed messages. 12 set postponed = +[Gmail]/Drafts 13 14 # Allow Mutt to open a new IMAP connection automatically. 15 unset imap_passive 16 17 # Keep the IMAP connection alive by polling intermittently (time in seconds). 18 set imap_keepalive = 300 19 20 # How often to check for new mail (time in seconds). 21 set mail_check = 120 22 23 source color.neomutt 24 25 # You can use any gmail imap mailboxes 26 mailboxes =INBOX =[Gmail]/Sent\ Mail =[Gmail]/Drafts =[Gmail]/Spam =[Gmail]/Trash 27 28 # Vim like binds 29 bind attach,index,pager \CD next-page 30 bind attach,index,pager \CU previous-page 31 bind pager g top 32 bind pager G bottom 33 bind attach,index g first-entry 34 bind attach,index G last-entry 35 36 # Sidebar binds 37 bind index,pager \CP sidebar-prev # Ctrl-n to select next folder 38 bind index,pager \CN sidebar-next # Ctrl-p to select previous folder 39 bind index,pager \CI sidebar-open # Ctrl-o to open selected folder 40 bind index,pager \CB sidebar-toggle-visible # Ctrl-b to toggle visibility of the sidebar 41 42 set realname="Michael Constantine" 43 # 44 # 45 # APPEND THIS FOR URLVIEW 46 macro pager \cb 'urlview' 'Follow links with urlview'