blob: bddefd5683cdc01dafa80636310800205d321b6b (
plain)
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
|
set folder = ~/.mail
set spoolfile = +"ens/INBOX"
# Setup mailboxes that will appear in the sidebar
named-mailboxes "archives" "=.archives"
mailboxes "+archives/ml/boost"
mailboxes "+archives/ml/gcc"
mailboxes "+archives/ml/llvm"
named-mailboxes "ens" "=.ens"
mailboxes `python ~/.config/mutt/mailboxes.py ens`
named-mailboxes "inria" "=.inria"
mailboxes `python ~/.config/mutt/mailboxes.py inria`
source ~/.config/mutt/gpg
source ~/.config/mutt/common
source ~/.config/mutt/bindings
# Load colorscheme
# source ~/.config/mutt/colors/gruvbox.mutt
source ~/.config/mutt/colors/gruvbox-alpha.mutt
# Aliases and LDAP integration through lbdb
source ~/.config/mutt/aliases
set query_command="lbdbq '%s'"
# if we are in any directory starting with the following, pull
# specific settings from somewhere else
folder-hook +ens/.* "source ~/.config/mutt/ens"
folder-hook +inria/.* "source ~/.config/mutt/inria"
folder-hook +paplevetoe/.* "source ~/.config/mutt/paplevetoe"
# Mutt will mark emails from these addresses as having been sent by you
alternates name@domain name@domain etc.
alternative_order text/plain text/html
# notmuch
#set virtual_spoolfile=yes
source ~/.config/mutt/vmailboxes
|