From 856fc4cc30dc87bd41436ea7dd7f9aabc1f258c1 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Thu, 25 Jan 2024 13:45:41 +0100 Subject: added muttrc configs --- config/extra/mutt/configs/billy@spacehb.net.muttrc | 18 ++++++++++++++++++ config/extra/mutt/configs/luca@spacehb.net.muttrc | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 config/extra/mutt/configs/billy@spacehb.net.muttrc create mode 100644 config/extra/mutt/configs/luca@spacehb.net.muttrc (limited to 'config/extra/mutt') diff --git a/config/extra/mutt/configs/billy@spacehb.net.muttrc b/config/extra/mutt/configs/billy@spacehb.net.muttrc new file mode 100644 index 0000000..0bf375c --- /dev/null +++ b/config/extra/mutt/configs/billy@spacehb.net.muttrc @@ -0,0 +1,18 @@ +# vim: filetype=neomuttrc +# muttrc file for account billy@spacehb.net +set realname = "billy" +set from = "billy@spacehb.net" +set sendmail = "msmtp -a billy@spacehb.net" +alias me billy +set folder = "/home/aluc/.local/share/mail/billy@spacehb.net" +set header_cache = "/home/aluc/.cache/mutt-wizard/billy_spacehb.net/headers" +set message_cachedir = "/home/aluc/.cache/mutt-wizard/billy_spacehb.net/bodies" +set mbox_type = Maildir +set hostname = "spacehb.net" +set spoolfile = "+INBOX" +set postponed = "+Drafts" +set trash = "+Trash" +set record = "+Sent" + +macro index o "mailsync billy@spacehb.net" "sync billy@spacehb.net" +mailboxes "=Drafts" "=Sent" "=Junk" "=INBOX" diff --git a/config/extra/mutt/configs/luca@spacehb.net.muttrc b/config/extra/mutt/configs/luca@spacehb.net.muttrc new file mode 100644 index 0000000..85b65d3 --- /dev/null +++ b/config/extra/mutt/configs/luca@spacehb.net.muttrc @@ -0,0 +1,18 @@ +# vim: filetype=neomuttrc +# muttrc file for account luca@spacehb.net +set realname = "Luca" +set from = "luca@spacehb.net" +set sendmail = "msmtp -a luca@spacehb.net" +alias me luca +set folder = "/home/aluc/.local/share/mail/luca@spacehb.net" +set header_cache = "/home/aluc/.cache/mutt-wizard/luca_spacehb.net/headers" +set message_cachedir = "/home/aluc/.cache/mutt-wizard/luca_spacehb.net/bodies" +set mbox_type = Maildir +set hostname = "spacehb.net" +set spoolfile = "+INBOX" +set postponed = "+Drafts" +set trash = "+Trash" +set record = "+Sent" + +macro index o "mailsync luca@spacehb.net" "sync luca@spacehb.net" +mailboxes "=Drafts" "=Sent" "=Junk" "=INBOX" -- cgit v1.2.3 From f357796d8ccfad14cbe6de192bcf22d75e829778 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Thu, 25 Jan 2024 13:47:12 +0100 Subject: Add theme colors and cache dirs --- .../extra/mutt/configs/raymaekers.luca@gmail.com | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'config/extra/mutt') diff --git a/config/extra/mutt/configs/raymaekers.luca@gmail.com b/config/extra/mutt/configs/raymaekers.luca@gmail.com index ffb7003..f3bbd75 100644 --- a/config/extra/mutt/configs/raymaekers.luca@gmail.com +++ b/config/extra/mutt/configs/raymaekers.luca@gmail.com @@ -16,3 +16,38 @@ set spoolfile = "+INBOX" set postponed = "+[Gmail]/Drafts" set record = "+[Gmail]/Sent Mail" set trash = "+[Gmail]/Trash" + +set header_cache = "~/.config/mutt/cache/headers" +set message_cachedir = "~/.config/mutt/cache/bodies" +set certificate_file = "~/.config/mutt/certificates" +set mbox_type = maildir + +# Default color definitions +color normal white default +color hdrdefault green default +color quoted green default +color quoted1 yellow default +color quoted2 red default +color signature cyan default +color indicator brightyellow red +color error brightred default +color status brightwhite blue +color tree brightmagenta default +color tilde brightblue default +color attachment brightyellow magenta +color markers brightred default +color message white default +color search brightwhite magenta +color bold brightyellow green + +# Color definitions when on a mono screen +mono bold bold +mono underline underline +mono indicator reverse +mono error bold + +# Colors for items in the reader +color header brightyellow default "^(From|Subject):" +color header brightcyan default ^To: +color header brightcyan default ^Cc: +mono header bold "^(From|Subject):" -- cgit v1.2.3