2016-11-07 02:27:14 +00:00
|
|
|
# conform to XDG base directory specification
|
|
|
|
set header_cache = $XDG_CACHE_HOME/mutt/headers
|
|
|
|
set message_cachedir = $XDG_DATA_HOME/mutt/messages
|
|
|
|
set mailcap_path = $XDG_CONFIG_HOME/mutt/mailcap
|
|
|
|
set record = $XDG_DATA_HOME/mutt/record/sent
|
|
|
|
set tmpdir = $XDG_RUNTIME_DIR
|
|
|
|
set certificate_file = $XDG_DATA_HOME/mutt/certificates
|
|
|
|
# i like having a clean uncluttered $HOME, sue me
|
|
|
|
|
|
|
|
# general
|
|
|
|
set mail_check = 0 # mbsync used for mail synchronisation
|
|
|
|
set timeout = 5 # wait 5s for user input
|
|
|
|
set sleep_time = 0 # disable pausing
|
|
|
|
set beep_new # beep when new mail received
|
2016-12-18 06:40:28 +00:00
|
|
|
#set nomark_old # don't mark unread new msgs as old
|
2016-11-07 02:27:14 +00:00
|
|
|
|
|
|
|
# mailbox
|
|
|
|
set mbox_type = Maildir # mailbox format
|
|
|
|
set folder = ~/.mail # mailbox storage directory
|
|
|
|
set spoolfile = "+gmail/INBOX" # default mailbox
|
|
|
|
|
|
|
|
# ssl configuration
|
|
|
|
set ssl_starttls # use STARTTLS if not set
|
|
|
|
set ssl_force_tls # force TLS negotation
|
|
|
|
|
2016-11-21 20:50:54 +00:00
|
|
|
# composing/sending configuration
|
2016-11-07 02:27:14 +00:00
|
|
|
set editor = "nvim +/^$ +nohlsearch" # place cursor after headers + turn off search highlighting
|
|
|
|
set edit_headers # enable header editing when composing
|
|
|
|
set mime_forward = ask-no # ask if fwd msg as attachments
|
2016-11-21 20:50:54 +00:00
|
|
|
set send_charset = "utf-8" # charset to use when sending
|
2016-11-07 02:27:14 +00:00
|
|
|
|
|
|
|
# grab rest of the config
|
|
|
|
source ~/.config/mutt/colours
|
|
|
|
source ~/.config/mutt/mailboxes
|
|
|
|
source ~/.config/mutt/layout
|
|
|
|
source ~/.config/mutt/bindings
|
|
|
|
source ~/.config/mutt/macros
|
|
|
|
source ~/.config/mutt/hooks
|
2016-11-07 06:16:35 +00:00
|
|
|
source ~/.config/mutt/notmuch
|
2016-11-07 02:27:14 +00:00
|
|
|
|
|
|
|
#set read_only # set read-only when messing around with settings
|