dotfiles

Dotfiles for my OpenBSD environment.
git clone https://git.mtkn.jp/dotfiles
Log | Files | Refs

muttrc (1395B)


      1 set alias_file = ~/address/mutt
      2 source ~/address/mutt
      3 
      4 set realname = "Matsuda Kenji"
      5 
      6 # default to sakura
      7 source "~/.config/mutt/conf.d/sakura"
      8 
      9 # security
     10 set ssl_starttls = yes
     11 set ssl_force_tls = yes
     12 
     13 # basic
     14 set editor = "nvi"
     15 set charset = "utf-8"
     16 set certificate_file = "~/.config/mutt/certificates"
     17 set mailcap_path = "~/.config/mutt/mailcap" 
     18 auto_view text/plain
     19 #set implicit_autoview = "yes"
     20 set pager = less
     21 unset prompt_after
     22 set sort = reverse-date
     23 bind index <Esc>r group-chat-reply
     24 set message_cachedir = "~/.cache/mutt"
     25 
     26 #sidebar
     27 #set sidebar_visible
     28 set sidebar_format = "%D%?F? [%F]?%* %?N?%N/?%S"
     29 #set sidebar_width = 15
     30 set sidebar_divider_char = '|'
     31 bind index \CP sidebar-prev
     32 bind index \CN sidebar-next
     33 bind index \CO sidebar-open
     34 
     35 # pager
     36 ignore *
     37 unignore from date subject to cc
     38 unignore organization organisation x-mailer: x-newsreader: x-mailing-list:
     39 unignore posted-to:
     40 
     41 # Vim like binds
     42 bind attach,index,pager \CD half-down
     43 bind attach,index,pager \CU half-up
     44 bind attach,index g first-entry
     45 bind attach,index G last-entry
     46 bind editor <Esc>A eol
     47 bind editor <Esc>I bol
     48 bind pager j next-line
     49 bind pager k previous-line
     50 bind pager g top
     51 bind pager G bottom
     52 bind pager \Cn next-entry
     53 bind pager \Cp previous-entry
     54 
     55 # colors
     56 color status color15 color0
     57 color index default default .
     58 color sidebar_highlight color15 color0
     59 color indicator underline color15 color0