diff options
author | Nicholas Van Doorn <nick@nv.delivery> | 2021-08-18 01:07:43 -0700 |
---|---|---|
committer | Nicholas Van Doorn <nick@nv.delivery> | 2021-08-18 01:07:43 -0700 |
commit | 1bfb6b0961ecf2a8c6150890fd7e0a532a5d1c2e (patch) | |
tree | ffeb3850c464919f7bf754d25605ed5e5e1f95e5 /muttrc | |
parent | 0cc24e66265a0a0784fc2113c3775999ee05f8cc (diff) |
Add `mutt` configuration
Writing emails in vim is sweet
Diffstat (limited to 'muttrc')
-rw-r--r-- | muttrc | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +set my_user="nick@nv.delivery" +set my_pass=$SMTP_PASS + +set smtp_url = "smtps://$my_user:$my_pass@smtp.fastmail.com:465" +set smtp_pass = $my_pass + +set from="Nicholas Van Doorn <nick@nv.delivery>" +set imap_user=$my_user +set imap_pass=$my_pass +set folder="imaps://imap.fastmail.com" +set spoolfile="=" +set record="=Sent" +set postponed="=Drafts" +set mbox="=Archive" +mailboxes = "=" + +source ~/.mutt/dracula.muttrc +bind index G imap-fetch-mail +set read_inc=1000 +set write_inc=1000 +set mail_check = 5 +set sort_aux=last-date-received +set sort=threads +set sort_re |