46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
set mail_check=5 # mutt checks for new mails on every keystroke
|
|
# but not more often then once in 5 seconds
|
|
set beep_new # beep on new messages in the mailboxes
|
|
|
|
# set editor - turn on spell check
|
|
set editor="vim -c \"set spell spelllang=en\""
|
|
|
|
#Signature
|
|
set signature="~/.signature"
|
|
|
|
# Set a pager index
|
|
set pager_index_lines=5
|
|
|
|
# Show or suppress headers:
|
|
ignore *
|
|
unignore date: time: from: subject: to: cc:
|
|
hdr_order date: time: to: cc: from: subject:
|
|
|
|
# Make new mail more noticeable
|
|
color index yellow default ~N
|
|
|
|
# Some other colors
|
|
color index red black ~D # Deleted messages are RED
|
|
color index magenta black ~T # Tagged Messages are MAGENTA
|
|
|
|
# Date Format
|
|
# set date_format="!%a, %b %d, %Y at %I:%M:%S%p %Z"
|
|
set date_format="!%Y/%m/%d %I:%M %Z"
|
|
|
|
# Index format that displays X-Label contents
|
|
set index_format="%S %D %-20.20F %-30.30s %-20.20t"
|
|
|
|
# Key Bindings
|
|
#
|
|
bind pager k previous-line
|
|
bind pager j next-line
|
|
bind pager n next-undeleted
|
|
bind pager p previous-undeleted
|
|
|
|
|
|
# Aliases
|
|
macro pager \cb <pipe-entry>'urlview'<enter> 'Follow links'
|
|
|
|
# Idea for multiple profile implementation from http://www.8t8.us/mutt/
|
|
#source ~/.mutt/muttrc.local.$LOCAL_CONFIG
|