aboutsummaryrefslogtreecommitdiffstats
path: root/_config/alot/config
blob: 8196d36d6efd12e3c2f09befec2e3667be2c347c (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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
##
## ~/.config/alot/config
## Configuration for alot MUA
##
## Aaron LI
## Created: 2016-01-11
## Updated: 2016-01-11
##


### Global configurations {{{
# ask for subject when compose
#ask_subject = False

# confirm exit
bug_on_exit = True

# headers that get displayed by default
displayed_headers = From, To, Cc, Bcc, Subject

# editor command
# if unset, alot will first try the `EDITOR`, then `/usr/bin/editor`
editor_cmd = 'gvim -f -c "set tw=72 spell"'
# call editor in separate thread.
# In case your editor doesn't run in the same window as alot, setting true here
# will make alot non-blocking during edits
editor_in_thread = True

# prefer plaintext alternatives over html content in multipart/alternative
prefer_plaintext = True

# number of spaces used to replace tab characters
tabwidth = 4

# set terminal command used for spawning shell commands
terminal_cmd = urxvt -e

# name of the theme to use
theme = solarized_dark

### Global }}}


# The list of addresses associated to the mailinglists you are subscribed to
mailinglists = freebsd-current@freebsd.org, freebsd-x11@freebsd.org, misc@openbsd.org, tech@openbsd.org


# NOTE: blocks should be placed *AFTER* the global configurations

[accounts]

    [[gmail-aly]]
        realname = Aaron LI
        address = aaronly.me@gmail.com
        gpg_key = 5D72729A
        sendmail_command = msmtp --read-recipients --account=gmail-aly
        sent_box = maildir:///home/aly/Mail/sent
        draft_box = maildir:///home/aly/Mail/gmail-aly/[Gmail].Drafts
        signature = ~/.signature-aly

    [[outlook-aly]]
        realname = Aaron LI
        address = aaronly.me@outlook.com
        gpg_key = 5D72729A
        sendmail_command = msmtp --read-recipients --account=outlook-aly
        sent_box = maildir:///home/aly/Mail/sent
        draft_box = maildir:///home/aly/Mail/outlook-aly/Drafts
        signature = ~/.signature-aly

    [[outlook-li]]
        realname = Weitian LI
        address = liweitianux@live.com
        aliases = liweitianux@live.cn, liweitianux@outlook.com
        gpg_key = 5F26EBF6
        sendmail_command = msmtp --read-recipients --account=outlook-li
        sent_box = maildir:///home/aly/Mail/sent
        draft_box = maildir:///home/aly/Mail/outlook-li/Drafts
        signature = ~/.signature-li


[tags]
    [[flagged]]
        translated = ⚑
        normal = '', '', 'light red', '', 'light red', ''
        focus  = '', '', 'light red', '', 'light red', ''

    [[todo]]
        translated = TODO
        normal = '', '', 'white', 'light red', 'white', '#d66'

    [[unread]]
        translated = ✉

    [[drafts]]
        translated = ✎

    [[replied]]
        translated = ⏎

    [[sent]]
        translated = ➥

    [[signed]]
        translated = ✍

    [[encrypted]]
        translated = ⚷

    [[killed]]
        translated = ✗

    [[attachment]]
        translated = ✂


### Key bindings
[bindings]
c = compose
F = search tag:flagged
I = search tag:inbox AND tag:unread AND NOT tag:killed
i = search tag:inbox AND NOT tag:killed
S = search tag:sent
T = search tag:todo

    [[envelope]]
    E = toggleencrypt

    [[search]]
    D = toggletags delete
    t = toggletags todo

    [[thread]]
    a = toggletags inbox
    t = toggletags todo


# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=python: #