diff options
Diffstat (limited to 'dot_neomutt')
-rw-r--r-- | dot_neomutt/colors.muttrc | 82 | ||||
-rw-r--r-- | dot_neomutt/first.email | 26 | ||||
-rw-r--r-- | dot_neomutt/mailcap | 4 |
3 files changed, 112 insertions, 0 deletions
diff --git a/dot_neomutt/colors.muttrc b/dot_neomutt/colors.muttrc new file mode 100644 index 0000000..750a86d --- /dev/null +++ b/dot_neomutt/colors.muttrc @@ -0,0 +1,82 @@ +# gruvbox dark (contrast dark): + +# bg0 = 232 +# bg1 = 237 +# bg2 = 239 +# bg3 = 241 +# bg4 = 243 +# +# gray = 245 +# +# fg0 = 229 +# fg1 = 223 +# fg2 = 250 +# fg3 = 248 +# fg4 = 246 +# +# red = 167 +# green = 142 +# yellow = 214 +# blue = 109 +# purple = 175 +# aqua = 108 +# orange = 208 + + +# See http://www.mutt.org/doc/manual/#color + +color attachment color109 color232 +color bold color229 color232 +color error color167 color232 +color hdrdefault color246 color232 +color indicator color223 color208 +color markers color243 color232 +color normal color223 color232 +color quoted color250 color232 +color quoted1 color108 color232 +color quoted2 color250 color232 +color quoted3 color108 color232 +color quoted4 color250 color232 +color quoted5 color108 color232 +color search color232 color208 +color signature color108 color232 +color status color232 color250 +color tilde color243 color232 +color tree color142 color232 +color underline color223 color239 + +color sidebar_divider color250 color232 +color sidebar_new color142 color232 + +color index color142 color232 ~N +color index color108 color232 ~O +color index color109 color232 ~P +color index color214 color232 ~F +color index color175 color232 ~Q +color index color167 color232 ~= +color index color232 color223 ~T +color index color232 color167 ~D + +color header color214 color232 "^(To:|From:)" +color header color142 color232 "^Subject:" +color header color108 color232 "^X-Spam-Status:" +color header color108 color232 "^Received:" + +color body color142 color232 "[a-z]{3,256}://[-a-zA-Z0-9@:%._\\+~#=/?&,]+" +#color body color142 color232 "[a-zA-Z]([-a-zA-Z0-9_]+\\.){2,256}[-a-zA-Z0-9_]{2,256}" +color body color208 color232 "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+" +color body color208 color232 "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+" +color body color232 color214 "[;:]-*[)>(<lt;|]" +color body color229 color232 "\\*[- A-Za-z]+\\*" + +color body color214 color232 "^-.*PGP.*-*" +color body color142 color232 "^gpg: Good signature from" +color body color167 color232 "^gpg: Can't.*$" +color body color214 color232 "^gpg: WARNING:.*$" +color body color167 color232 "^gpg: BAD signature from" +color body color167 color232 "^gpg: Note: This key has expired!" +color body color214 color232 "^gpg: There is no indication that the signature belongs to the owner." +color body color214 color232 "^gpg: can't handle these multiple signatures" +color body color214 color232 "^gpg: signature verification suppressed" +color body color214 color232 "^gpg: invalid node with packet of type" + diff --git a/dot_neomutt/first.email b/dot_neomutt/first.email new file mode 100644 index 0000000..c394da9 --- /dev/null +++ b/dot_neomutt/first.email @@ -0,0 +1,26 @@ +set realname = "Santo Cariotti" +set from = "<email>" +set use_from = yes +set envelope_from = yes + +set smtp_url = "smtp://<email>@<host>:<port>/" +set smtp_pass = "<password>" + +set imap_user = "<email>" +set imap_pass = "<password>" + +set folder = "~/.mail/<email>" + +set ssl_force_tls = yes +set sendmail = "msmtp -a <email>" +set mbox_type = Maildir +set spoolfile = +INBOX +set record = +Sent +set postponed = +Drafts +set trash = +Trash +mailboxes =INBOX =Sent =Drafts =Trash + +# synchronization settings ['S' to sync] +macro index S "<shell-escape>mbsync -V <email><enter>" "sync email" + +color indicator black color214 diff --git a/dot_neomutt/mailcap b/dot_neomutt/mailcap new file mode 100644 index 0000000..06f3de1 --- /dev/null +++ b/dot_neomutt/mailcap @@ -0,0 +1,4 @@ +text/html; xdg-open %s &> /dev/null &; nametemplate=%s.html +application/*; xdg-open %s &> /dev/null &; +image/*; xdg-open %s &> /dev/null &; + |