blob: 2d9ec83d7b3616584760d3a41af9a2e4a2830e77 (
plain) (
blame)
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
|
# vim: filetype=neomuttrc
set editor = "vim"
# PGP Settings
set crypt_use_gpgme = yes
set crypt_autosign = yes # auto sign all outgoing emails
set crypt_verify_sig = yes # attempt auto verify signature
set crypt_replysign = yes # sign reply to signed emails
set crypt_replyencrypt = yes # encrypt replies to encrypted emails
set crypt_replysignencrypted = yes # encrypt and sign replies to encrypted signed emails
set pgp_use_gpg_agent = yes
set pgp_default_key = "83786B48F734C4F7C2CEEC30D9FDD29DE1EA6405"
set pgp_sign_as = "83786B48F734C4F7C2CEEC30D9FDD29DE1EA6405"
my_hdr X-PGP-Key: https://a14m.dev/pub.gpg
# Set preffered view modes
auto_view text/enriched text/html
alternative_order text/plain text/enriched text/html
# Main Options
# https://neomutt.org/guide/reference.html
unset envelope_from_address # Don't use just the address for reply
set use_envelope_from # Use the From header for sending replies
set edit_headers # show headers when composing
set fast_reply # skip to compose when replying
set askcc # ask for CC:
set fcc_attach # save attachments with the body
set forward_format = "Fwd: %s" # format of subject when forwarding
set forward_decode # decode when forwarding
set attribution = "On %d, %n wrote:" # format of quoting header
set reply_to # reply to Reply to: field
set reverse_name # reply as the origin To
set include # include message in replies
set forward_quote # include message in forwards
unset text_flowed # don't genreate text/plain; format=flowed
unset sig_dashes # no dashes before sig
unset mime_forward # forward attachments as part of body
# unset help # No help bar at the top of index
set status_on_top # Status bar on top of index
set tmpdir = ~/.config/neomutt/.tmp/ # where to keep temp files
# unset confirm_append # don't ask, just do!
# set quit # don't ask, just do!!
# unset mark_old # read/new is good enough for me
# set beep_new # bell on new mails
set pipe_decode # strip headers and eval mimes when piping
set thorough_search # strip headers and eval mimes before searching
# status bar, date format, finding stuff etc.
set status_chars = " *%A"
set status_format = "[ Folder: %f ] [%r%m messages%?n? (%n new)?%?d? (%d to delete)?%?t? (%t tagged)? ]%>─%?p?( %p postponed )?"
set date_format = "%d.%m.%Y %H:%M"
set sort = threads
set sort_aux = last-date-received # New mail is added at the bottom of the list
set sort_aux = reverse-last-date-received # Override the sort_aux so that new always come first/top
# set uncollapse_jump
set sort_re
set reply_regex = "^((re|aw|sv|fwd?|fw)([\\[0-9\\]]+)?:[ \t]*)*"
# set quote_regex = "^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+"
set send_charset = "utf-8:iso-8859-1:us-ascii"
set charset = "utf-8"
set arrow_cursor = "no" # Change `color indicator` depending
# # Pager View Options
set pager_index_lines = 10 # Shows 10 lines of index when pager is active
set pager_context = 3
set pager_stop
# set menu_scroll
set tilde
# unset markers
# wait_key = no # mutt won't ask 'press any key to continue'
# # Sidebar view Options
set sidebar_visible
set sidebar_short_path
set sidebar_folder_indent
set sidebar_next_new_wrap = yes
set sidebar_format = "%B %* [%?N?%N / ?%S]"
set mail_check_stats
set mailcap_path = ~/.config/neomutt/mailcap
set header_cache = "~/.config/neomutt/.cache/headers"
set message_cachedir = "~/.config/neomutt/.cache"
# set query_command = "khard email --parsable --search-in-source-files '%s'"
|