dotfiles/mail/.config/neomutt/muttrc

45 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2016-11-07 02:27:14 +00:00
# conform to XDG base directory specification
set header_cache = $XDG_CACHE_HOME/neomutt/headers
set message_cachedir = $XDG_DATA_HOME/neomutt/messages
set mailcap_path = $XDG_CONFIG_HOME/neomutt/mailcap
set record = $XDG_DATA_HOME/neomutt/record/sent
2016-11-07 02:27:14 +00:00
set tmpdir = $XDG_RUNTIME_DIR
set certificate_file = $XDG_DATA_HOME/neomutt/certificates
2016-11-07 02:27:14 +00:00
# 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 = "+rawlinson/INBOX" # default mailbox
2016-11-07 02:27:14 +00:00
# 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
unset user_agent # remove UA header
2016-11-07 02:27:14 +00:00
# grab rest of the config
source ~/.config/neomutt/colours
source ~/.config/neomutt/mailboxes
source ~/.config/neomutt/gpg
source ~/.config/neomutt/layout
source ~/.config/neomutt/bindings
source ~/.config/neomutt/macros
source ~/.config/neomutt/hooks
source ~/.config/neomutt/notmuch
2016-11-07 02:27:14 +00:00
#set read_only # set read-only when messing around with settings
# vim: syntax=muttrc