garbash-skel

new user config / onboarding for garbash tilde
git clone git://git.alexkarle.com.com/garbash-skel
Log | Files | Refs | README

.muttrc (1312B) [raw]


      1 # ~/.muttrc -- starter garbash mutt(1) config
      2 
      3 # Necessary Options -----------------------------------------------------------
      4 set from="$USER@garbash.com"
      5 set realname="$USER"
      6 set mbox_type="Maildir"
      7 set folder="~/Maildir"
      8 set spoolfile="=INBOX"
      9 set record="=Sent"
     10 set postponed="=Drafts"
     11 
     12 # Recommended Options ---------------------------------------------------------
     13 # Require encrypted connection for submission
     14 set ssl_force_tls = yes
     15 
     16 # BCC self to show up in INBOX
     17 my_hdr BCC: $from
     18 
     19 # Sort by threads (newest first)
     20 set sort=threads
     21 set sort_aux=reverse-last-date-received
     22 
     23 # Show some index in the pager (mail viewer)
     24 set pager_index_lines=6
     25 
     26 # Restrict quotes to |, :, and >  (default has } and # which match code)
     27 set quote_regexp="^([ \t]*[|>:])+"
     28 
     29 # Highlight unread emails
     30 color index yellow black ~U
     31 
     32 # Rainbow nested threads!
     33 color quoted green black
     34 color quoted1 blue black
     35 color quoted2 magenta black
     36 color quoted3 yellow black
     37 color quoted4 red black
     38 
     39 # Basic patch highting
     40 color body green black "^\\+.*"
     41 color body red black "^-.*"
     42 color body magenta black "^\\+\\+\\+ b/.*"
     43 color body magenta black "^--- a/.*"
     44 color body magenta black "^@@.*@@"
     45 color body magenta black "^@@.*@@"
     46 color body magenta black "^diff --git.*"
     47 color body magenta black "^index [0-9a-z]{7}\\.\\.[0-9a-z]{7}.*"