-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmuttrc
95 lines (72 loc) · 2.59 KB
/
muttrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Get account/mailbox info
source ~/.dotfiles-private/.mutt/mailboxes
# Get keybindings
source ~/.mutt/keybindings
# Get crypto
source ~/.mutt/crypto
# Check mail every 15 seconds
set mail_check=15
# Notify about new mail every 10 seconds
set timeout=10
# filters new messages through a shell script that automatically generates a mutt alias for new senders
set display_filter=$HOME/.mutt/add_alias_filter.sh
set alias_file= ~/.mutt/aliases.txt
source $alias_file
# do not ask for to, subject,... when replying.
set fast_reply
# Use emacs
#set editor="emacs -nw --no-init-file --load ~mj82/.emacs.d/emacs-mail +7:0"
set edit_headers
set editor="vim +':set textwidth=0' +':set wrapmargin=0' +':set wrap' +/^$ ++1"
# Use format=flowed text
set text_flowed=yes
set pager_stop # don't go to next message at end of message
# Use an smtp server
#set smtp_url="smtp://[email protected]:587/"
#set smtp_pass=""
#set smtp_url=smtps://$imap_user:[email protected]:587/
#set ssl_force_tls = yes
##### Sidebar Setup
# set up the sidebar, default not visible
set sidebar_width=25
set sidebar_visible=yes
#set sidebar_delim_chars='|'
#set sidebar_sort=yes
# which mailboxes to list in the sidebar
mailboxes =INBOX ="INBOX.Sent Items" ="INBOX.Trash"
# color of folders with new mail
color sidebar_new yellow default
# prevent sidebar from being truncated
#set sidebar_short_path = yes
set sidebar_format = "%B%* %N "
# don't prompt to purge messages on exit
# set delete=no
# Don't want any wrap markers.
set nomarkers
# Enable threading
set sort=threads
#set sort_aux=date
# Stuff for viewing html e-mails
set mailcap_path = ~/.mutt/mailcap
auto_view text/html
alternative_order text/plain text/html
# Use the Solarized color scheme
# uncomment the colorscheme you want to use, and comment out the others
source ~/.mutt/mutt-colors-solarized/mutt-colors-solarized-dark-16.muttrc
#source ~/.mutt/mutt-colors-solarized/mutt-colors-solarized-light-16.muttrc
#source ~/.mutt/mutt-colors-solarized/mutt-colors-solarized-dark-256.muttrc
#source ~/.mutt/mutt-colors-solarized/mutt-colors-solarized-light-256.muttrc
#make mutt colorful!
#color attachment brightmagenta default
#color error brightred default
#color hdrdefault red default
#color indicator brightyellow red
#color markers brightcyan default
#color message brightcyan default
#color normal default default
#color quoted brightblue default
#color search default green
#color signature red default
#color status yellow blue
#color tilde magenta default
#color tree magenta default