sidebar.muttrc 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ##### My (demuredemeanor) muttrc sub sidebar config
  2. # Uses tabstop=4; shiftwidth=4 tabs; foldmarker={{{,}}};
  3. # https://notabug.org/demure/dotfiles
  4. # legacy repo http://github.com/demure/dotfiles
  5. # vim:set syntax=muttrc:
  6. ifndef sidebar finish ## If not compiled with sidebar, skip
  7. ### Sidebar Settings ### {{{
  8. set sidebar_visible = yes ## Make the Sidebar visible by default
  9. set sidebar_width = 16 ## Sidebar width, including divider
  10. set sidebar_divider_char = '│' ## Pretty line-drawing character
  11. set sidebar_short_path ## Shorten mailbox names
  12. set sidebar_delim_chars = "/" ## Delete mailbox name up to the last / character
  13. set mail_check_stats ## Need for sidebar_format's %N
  14. ## '%B' mailbox name; '%?F? [%F]?' If flag, show flag; '%* ' pad spaces; '%?N?%N/?' if new, show new with '/' char; '%?S?%S?' if size, show size.
  15. set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%?S?%S?'
  16. set sidebar_folder_indent ## Indent folders whose names we've shortened
  17. #set sidebar_indent_string=" " ## Indent with two spaces
  18. ### End Sidebar Settings ### }}}
  19. ### Sidebar Colors ### {{{
  20. ## Listed by priority
  21. color sidebar_indicator default color17 ## Dark blue background
  22. color sidebar_highlight white color238 ## Grey background
  23. #color sidebar_highlight white cyan ## Cyan for visablity
  24. color sidebar_spoolfile yellow black ## Yellow
  25. color sidebar_new green black ## Green
  26. color sidebar_flagged red black ## Red
  27. #color sidebar_ordinary color8 black ## test
  28. color sidebar_divider color8 black ## Dark grey
  29. ### End Sidebar Colors ### }}}
  30. ### Sidebar Navigation ### {{{
  31. bind index,pager <down> sidebar-next
  32. bind index,pager <up> sidebar-prev
  33. bind index,pager <right> sidebar-open
  34. ### End Sidebar Nav ### }}}
  35. ### Sidebar Mailboxes ### {{{
  36. ## Mailboxes, which will be shown in the sidebar.
  37. mailboxes +sdf +sdf/INBOX +sdf/Drafts +sdf/Sent +sdf/Trash
  38. mailboxes +gmail +gmail/INBOX +gmail/archive +gmail/People +gmail/Orders +gmail/News\ Letters +gmail/drafts +gmail/sent +gmail/trash
  39. mailboxes +emu +emu/INBOX +emu/archive +emu/drafts +emu/sent +emu/trash
  40. mailboxes "+-- local -----------" /var/spool/mail/$USER
  41. ### End Sidebar Mailboxes ### }}}M#