dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

.muttrc (886B) [raw]


      1 # .muttrc -- mutt(1) config
      2 
      3 # Account setup (see also: .mbsyncrc)
      4 set from="alex@alexkarle.com"
      5 set realname="Alex Karle"
      6 set mbox_type="Maildir"
      7 set folder="~/mail"
      8 set spoolfile="=INBOX"
      9 set record="=Sent"
     10 set postponed="=Drafts"
     11 
     12 # Cache headers for a speedier startup
     13 set header_cache="~/.cache/mutt"
     14 
     15 # Bcc myself so I show up in the INBOX threads
     16 my_hdr Bcc: $from
     17 
     18 # Sort by threads, then by date
     19 set sort=threads
     20 set sort_aux=reverse-last-date-received
     21 
     22 # I don't use IMAP/SMTP in mutt, but if I decide to, force TLS (can't hurt to set!)
     23 set ssl_force_tls=yes
     24 
     25 # Show a bit of the index in the pager (nice to see position in thread)
     26 set pager_index_lines=6
     27 
     28 # Monochrome coloring
     29 color normal default default
     30 color index bold black white ~N
     31 
     32 # Convert text/html to plaintext via mailcap, but prefer plaintext if there
     33 auto_view text/html
     34 alternative_order text/plain text/html