diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-09-09 09:19:00 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-09-09 09:19:00 +0100 |
commit | 8dbeb2d6c11dbef1e39b9ab0fe5370a09ac70fef (patch) | |
tree | f0ac08c28da916e315d54fe560466ce40dc085e0 /muttrc | |
parent | 31384610f9730c02cbe59b4c8e188949279bca6d (diff) |
decent offlineimap and mutt settings
Diffstat (limited to '')
-rw-r--r-- | muttrc | 41 |
1 files changed, 28 insertions, 13 deletions
@@ -37,7 +37,10 @@ set text_flowed=yes # Sidebar Patch -------------------------------------- #set sidebar_delim = '│' -#set sidebar_visible = yes +set sidebar_visible = yes +set sidebar_width = 20 +set sidebar_format = "%B%?F? [%F]?%* %?N?%N/?%S" +set mail_check_stats #set sidebar_width = 24 ## not working in xubuntu set sidebar_shortpath = yes #set sidebar_sort = yes @@ -58,19 +61,29 @@ hdr_order from: to: cc: bcc: date: subject: # and in this order # Default inbox. set spoolfile = "+matt-matthewlemon.com/INBOX" +#set spoolfile = "+INBOX" # Alternate email addresses. #alternates <shit goes in here> # Mailboxes to show in the sidebar. - mailboxes +matt-matthewlemon.com/INBOX \ - +matt-matthewlemon.com/INBOX.Archive \ - +matt-matthewlemon.com/INBOX.Sent\ Items \ - +matt-matthewlemon.com/INBOX.Drafts \ -# +matt-matthewlemon.com/INBOX.Gmail.Archive \ - +matt-matthewlemon.com/INBOX.Trash \ -# +temporary/search \ +subscribe announce@openbsd.org + +named-mailboxes Inbox +matt-matthewlemon.com/INBOX \ + Sent\ Items +matt-matthewlemon.com/Sent\ Items \ + Archive +matt-matthewlemon.com/Archive \ + Archive\ 2019 +matt-matthewlemon.com/Archive.2019 \ + Drafts +matt-matthewlemon.com/Drafts \ + Gmail\ Old +matt-matthewlemon.com/Gmail\ Old\ Archive \ + Trash +matt-matthewlemon.com/Trash \ + +# mailboxes +matt-matthewlemon.com/INBOX \ +# +matt-matthewlemon.com/INBOX.Archive \ +# +matt-matthewlemon.com/INBOX.Sent\ Items \ +# +matt-matthewlemon.com/INBOX.Drafts \ +# +matt-matthewlemon.com/INBOX.Trash \ +#mailboxes +INBOX +INBOX.Archive +INBOX.Sent\ Items +INBOX.Drafts +INBOX.Trash # Other special folders. set mbox = "+matt-matthewlemon.com/INBOX.Archive" @@ -86,7 +99,7 @@ set sort_re # thread based on regex set reply_regexp = "^(([Rr][Ee]?(\[[0-9]+\])?: *)?(\[[^]]+\] *)?)*" # Index Key Bindings --------------------------------- -#bind index gg first-entry +bind index 0 first-entry bind index G last-entry bind index R group-reply @@ -128,7 +141,7 @@ alternative_order text/plain text/enriched text/html # Pager Key Bindings --------------------------------- bind pager k previous-line bind pager j next-line -bind pager gg top +#bind pager gg top bind pager G bottom bind pager R group-reply @@ -157,12 +170,12 @@ set include # include message in replies set forward_quote # include message in forwards #set editor = "vim" # Use terminal Vim to compose email. -set editor = "nvim %s" +set editor = "vim %s" set from = "matt@matthewlemon.com" -set sendmail = "/usr/bin/msmtp -a matthewlemon" +set sendmail = "/usr/local/bin/msmtp -a matthewlemon" set sendmail_wait = 0 -set record = "+matt-matthewlemon.com/INBOX.Sent\ Items" +set record = "+matt-matthewlemon.com/Sent\ Items" bind compose p postpone-message bind index p recall-message @@ -233,3 +246,5 @@ source ~/.mutt/colours # Define colours. # # MAILCAP auto_view text/html + +# vim: ft=muttrc |