Created
December 27, 2010 07:37
-
-
Save nickanderson/755946 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Nick Anderson <[email protected]> | |
| # Mutt Configuration | |
| # Load the Zenburn colorscheme | |
| source ~/.mutt/colorschemes/zenburn | |
| source $HOME/.mutt/identity | |
| source $HOME/.mutt/gpg | |
| # Set the editor | |
| # Use autotrim formating script to pre-process loaded text removing previously | |
| # quoted replies. | |
| set editor="$HOME/bin/reply-auto-trim %s; /usr/bin/vim -c 'set textwidth=72' -c 'set wrap' -c 'set nocompatible' -c 'set spell' -c '?^$'" | |
| # Dont move read messages into ~/mbox | |
| set move = yes | |
| # Force MTA to use the same address for the envelope as the From: header field | |
| set use_envelope_from = yes | |
| set imap_idle = yes | |
| set envelope_from=yes | |
| set sort = threads | |
| set sort_aux=last-date-received | |
| set strict_threads | |
| set markers=no | |
| set smart_wrap | |
| set pager_context=5 | |
| set delete=yes | |
| auto_view text/html | |
| # Prefer Plain text to html, html to word etc ... | |
| alternative_order text/plain text/html application/vnd.msword application/msword | |
| # Simple modification to index format to display year in date column | |
| set index_format="%4C %Z %[!%b %d %Y] %-17.17F (%3l) %s" | |
| set print=yes # Don't ask before printing | |
| set print_command="muttprint" # Use muttprint for pretty | |
| set print_split # Split each msg selected for printing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment