diff options
author | Laura <the-ceo-of-antifa@protonmail.com> | 2023-04-25 22:07:28 +0200 |
---|---|---|
committer | Laura <the-ceo-of-antifa@protonmail.com> | 2023-04-25 22:07:28 +0200 |
commit | d59d414a9ffc7245ecda913b1f6577be14385c83 (patch) | |
tree | 83ddfd35b37008e249162387b0647ffe369555b8 /.config/neomutt | |
download | dotfiles-d59d414a9ffc7245ecda913b1f6577be14385c83.tar.gz dotfiles-d59d414a9ffc7245ecda913b1f6577be14385c83.zip |
Initial commit
Diffstat (limited to '.config/neomutt')
-rw-r--r-- | .config/neomutt/catppuccin | 36 | ||||
-rw-r--r-- | .config/neomutt/neomuttrc | 22 |
2 files changed, 58 insertions, 0 deletions
diff --git a/.config/neomutt/catppuccin b/.config/neomutt/catppuccin new file mode 100644 index 0000000..c5770d2 --- /dev/null +++ b/.config/neomutt/catppuccin @@ -0,0 +1,36 @@ +# https://github.com/catppuccin/neomutt/blob/main/neomuttrc + +color normal default default # Text is "Text" +color index color2 default ~N # New Messages are Green +color index color1 default ~F # Flagged messages are Red +color index color13 default ~T # Tagged Messages are Red +color index color1 default ~D # Messages to delete are Red +color attachment color5 default # Attachments are Pink +color signature color8 default # Signatures are Surface 2 +color search color4 default # Highlighted results are Blue + +color indicator default color8 # currently highlighted message Surface 2=Background Text=Foreground +color error color1 default # error messages are Red +color status color15 default # status line "Subtext 0" +color tree color15 default # thread tree arrows Subtext 0 +color tilde color15 default # blank line padding Subtext 0 + +color hdrdefault color13 default # default headers Pink +color header color13 default "^From:" +color header color13 default "^Subject:" + +color quoted color15 default # Subtext 0 +color quoted1 color7 default # Subtext 1 +color quoted2 color8 default # Surface 2 +color quoted3 color0 default # Surface 1 +color quoted4 color0 default +color quoted5 color0 default + +color body color2 default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+ # email addresses Green +color body color2 default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+ # URLs Green +color body color4 default (^|[[:space:]])\\*[^[:space:]]+\\*([[:space:]]|$) # *bold* text Blue +color body color4 default (^|[[:space:]])_[^[:space:]]+_([[:space:]]|$) # _underlined_ text Blue +color body color4 default (^|[[:space:]])/[^[:space:]]+/([[:space:]]|$) # /italic/ text Blue + +color sidebar_flagged color1 default # Mailboxes with flagged mails are Red +color sidebar_new color10 default # Mailboxes with new mail are Green
\ No newline at end of file diff --git a/.config/neomutt/neomuttrc b/.config/neomutt/neomuttrc new file mode 100644 index 0000000..6a64fc9 --- /dev/null +++ b/.config/neomutt/neomuttrc @@ -0,0 +1,22 @@ +source catppuccin + +set folder = "imaps://lav@mail.vampires.gay:993" +set mbox_type = maildir +unmailboxes * +mailboxes +Inbox +Sent +Drafts +Junk +Trash +set spoolfile = +Inbox +set record = +Sent +set trash = +Trash +set postponed = +Drafts + +set reply_self = yes +set editor = emacsclient + +set index_format = "%4C %Z %[%Y-%m-%d] %-15.15L (%?l?%4l&%4c?) %s" + +set pgp_default_key = "lav@vampires.gay" +set crypt_auto_sign = yes +set crypt_verify_sig = yes +set crypt_reply_sign = yes + +set real_name = "Laura Aino Violetta Aléanor"
\ No newline at end of file |