46 lines
1.8 KiB
Text
46 lines
1.8 KiB
Text
# Example NeoMutt config file for the sidebar feature.
|
|
|
|
# --------------------------------------------------------------------------
|
|
# VARIABLES - shown with their default values
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Should the Sidebar be shown?
|
|
set sidebar_sort_method = 'alpha'
|
|
set sidebar_visible = yes
|
|
set sidebar_folder_indent=yes # Indent folders whose names we've shortened
|
|
set sidebar_indent_string=' ' # Indent with two spaces
|
|
set sidebar_short_path # Shorten mailbox names
|
|
|
|
set mail_check_stats = yes
|
|
set sidebar_divider_char = ' │ '
|
|
#set sidebar_width = 25
|
|
set sidebar_short_path = yes
|
|
color sidebar_indicator default color25 # Dark blue background
|
|
color sidebar_highlight white color238 # Grey background
|
|
color sidebar_spoolfile yellow default # Yellow
|
|
color sidebar_flagged red default # Red
|
|
color sidebar_divider color8 default # Dark grey
|
|
color sidebar_new brightblue default
|
|
|
|
# When abbreviating mailbox path names, use any of these characters as path
|
|
# separators. Only the part after the last separators will be shown.
|
|
# For file folders '/' is good. For IMAP folders, often '.' is useful.
|
|
set sidebar_delim_chars='/.' # Delete everything up to the last / character
|
|
|
|
# --------------------------------------------------------------------------
|
|
# FUNCTIONS - shown with an example mapping
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Move the highlight to the previous mailbox
|
|
bind index,pager \Cp sidebar-prev
|
|
|
|
# # Move the highlight to the next mailbox
|
|
bind index,pager \Cn sidebar-next
|
|
|
|
# # Open the highlighted mailbox
|
|
bind index,pager \Co sidebar-open
|
|
|
|
# Toggle the visibility of the Sidebar.
|
|
bind index,pager B sidebar-toggle-visible
|
|
|
|
# vim: syntax=muttrc
|