more in-progress neomutt work, needs mailcap work

This commit is contained in:
Andrew Davidson 2024-09-11 14:18:40 -07:00
parent a1d1b93377
commit 41e4794570
Signed by: amd
SSH key fingerprint: SHA256:bEXCGvHGPU8WP+o0a21VMf/KNEnNKxHz0fe64QX30kg
2 changed files with 35 additions and 1 deletions

View file

@ -42,13 +42,16 @@ unset sig_dashes # no dashes before signature
set charset = "utf-8" # prefer utf-8 set charset = "utf-8" # prefer utf-8
set send_charset = "utf-8:iso-8859-1:us-ascii" # send in utf-8 set send_charset = "utf-8:iso-8859-1:us-ascii" # send in utf-8
set editor = "nvim" # we know we want to edit in nvim set editor = "nvim" # we know we want to edit in nvim
set confirmappend = no # don't double check when moving messages unset confirmappend # don't double check when moving messages
set reverse_alias # if an alias is set for a contact, use that
### Message threading ### Message threading
set sort_re # changes method by which threads are sorted set sort_re # changes method by which threads are sorted
set sort = reverse-threads # sort by threads set sort = reverse-threads # sort by threads
set sort_aux = last-date-received # secondarily sory by most recent message received in thread set sort_aux = last-date-received # secondarily sory by most recent message received in thread
### Sidebar ### Sidebar
set sidebar_visible # show the sidebar set sidebar_visible # show the sidebar
set sidebar_short_path # simplify paths in sidebar set sidebar_short_path # simplify paths in sidebar
@ -57,6 +60,9 @@ set sidebar_format = "%B %* [%?N?%N/?%S]" # what should the sidebar display
set mail_check_stats # check mailbox statistics for sidebar view set mail_check_stats # check mailbox statistics for sidebar view
### Colorscheme
source "./nord.theme"
### Keybindings ### Keybindings
bind index j next-entry bind index j next-entry

View file

@ -0,0 +1,28 @@
color normal default default # default colours
color index brightblue default ~N # new messages
color index red default ~F # flagged messages
color index blue default ~T # tagged messages
color index brightred default ~D # deleted messages
color body brightgreen default (https?|ftp)://[\-\.+,/%~_:?&=\#a-zA-Z0-9]+ # links
color body brightgreen default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+ # email-addresses
color attachment magenta default # attachments
color signature brightwhite default # sigs
color search brightred black # highlight results
color indicator black cyan # currently highlighted message
color error red default # error messages
color status white brightblack # status line
color tree white default # thread tree arrows
color tilde cyan default # blank line padding
color hdrdefault brightblue default # default headers
color header cyan default "^From:"
color header cyan default "^Subject:"
color quoted cyan default # quote colours
color quoted1 brightcyan default
color quoted2 blue default
color quoted3 green default
color quoted4 yellow default
color quoted5 red default