Add a working neomutt configuration
This commit is contained in:
81
neomutt/neomuttrc
Normal file
81
neomutt/neomuttrc
Normal file
@ -0,0 +1,81 @@
|
||||
set realname="Orien Vandenbergh"
|
||||
set signature="~/.signature.txt"
|
||||
set from="orien.vandenbergh@guidepointsecurity.com"
|
||||
set use_from = yes
|
||||
set envelope_from = yes
|
||||
|
||||
set hostname=felurian.guidepointsecurity.com # Name of the localhost
|
||||
set hidden_host # Hide host details
|
||||
set alias_file=~/.config/neomutt/aliases # Personal mail aliases
|
||||
#set query_command="~/bin/mutt-ldap '%s'" # How to query the company contacts
|
||||
set postpone=ask-no # Ask about postponing
|
||||
set move # Keep read mail in inbox
|
||||
set print=ask-no # Ask before printing
|
||||
set delete=yes # Just delete it
|
||||
set include # Include messages in replies
|
||||
set sort_aux=date-received # Sort threads by date received
|
||||
set charset=utf-8 # UTF-8 by default
|
||||
#set noallow_8bit # 8bit isn't safe via Demon.
|
||||
# Attribution line.
|
||||
set attribution="* %n <%a> [%{%Y-%m-%d %H:%M:%S %Z}]:\n"
|
||||
set edit_headers # I want to edit the message headers.
|
||||
# Use emacs.
|
||||
#set editor="emacs -geometry 90x73+298+0 --load post-mode"
|
||||
set editor="vim -c ':0' -c '/^$/' -c ':nohlsearch'"
|
||||
#set query_command="lbdbq '%s'" # Use the little brother database for doing queries.
|
||||
#set nomark_old # Don't mark unread new msgs as old.
|
||||
set mail_check=90
|
||||
set timeout=15
|
||||
set mbox_type=maildir # mailbox type
|
||||
set mbox="!" # Default mailbox.
|
||||
#set imap_user="orien" # How we gonna log in
|
||||
#set imap_peek="no" # Mark a message as read, when downloaded
|
||||
set copy # Keep copies of outgoing mail...
|
||||
set nobeep # We don't need no beeping software.
|
||||
set nosmart_wrap # Don't want smart wrapping.
|
||||
set nomarkers # Don't want any wrap markers.
|
||||
set mime_forward # Forward message as MIME attachments.
|
||||
set pager_context=3 # Display 3 lines of context in pager.
|
||||
set nostrict_threads # Lets have some fuzzy threading.
|
||||
set sendmail_wait=-1 # Don't wait around for sendmail.
|
||||
set wait_key=no # Don't wait after subshell exit
|
||||
set fcc_clear # Keep fcc's clear of signatues and encryption.
|
||||
set nopipe_decode # Don't decode messages when piping.
|
||||
# Print via a2ps
|
||||
set print_command="a2ps -1gEmail --borders=no --strip=3"
|
||||
set tilde # Fill out messages with '~'.
|
||||
set read_inc=100 # Read counter ticks every 100 msgs.
|
||||
set write_inc=100 # Write counter ticks every 100 msgs.
|
||||
set noconfirmappend # Just append, don't hassle me.
|
||||
set pager_stop # Don't skip msgs on next page.
|
||||
# Where to find the mailcap.
|
||||
set mailcap_path=~/.config/neomutt/mailcap:/usr/local/etc/mailcap:/etc/mailcap
|
||||
# What we consider to be a quote.
|
||||
set quote_regexp="^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+"
|
||||
set to_chars=" +TCFL" #
|
||||
|
||||
set header_cache="~/.cache/neomutt/headers" # Where to cache imap headers
|
||||
set message_cachedir="~/.cache/neomutt/bodies" # "" bodies
|
||||
|
||||
#source /usr/share/doc/mutt/samples/gpg.rc # Use GPG
|
||||
source ~/.config/neomutt/accounts # Account details
|
||||
source ~/.config/neomutt/aliases # Load in my aliases.
|
||||
source ~/.config/neomutt/auto_views # Define auto_views.
|
||||
source ~/.config/neomutt/bindings # Define key bindings.
|
||||
source ~/.config/neomutt/colours # Define colours.
|
||||
source ~/.config/neomutt/fcc-hooks # Define fcc-hooks.
|
||||
source ~/.config/neomutt/folder-hooks # Define folder-hooks.
|
||||
source ~/.config/neomutt/headers # Configure header display.
|
||||
source ~/.config/neomutt/macros # Define macros.
|
||||
source ~/.config/neomutt/mailboxes # Define the list of folders that receive mail.
|
||||
source ~/.config/neomutt/message-hooks # Define message hooks.
|
||||
source ~/.config/neomutt/non-standard # Support for mutt patches.
|
||||
source ~/.config/neomutt/save-hooks # Define save-hooks.
|
||||
source ~/.config/neomutt/subscriptions # Define the list of subscribed mailing lists.
|
||||
|
||||
# HTML is the last option.
|
||||
alternative_order text/enriched text/plain text/html
|
||||
|
||||
# Last, but not least, get mutt to display its version on startup.
|
||||
# This conflicts with password prompts, so leaving off
|
||||
#push <show-version>
|
Reference in New Issue
Block a user