Compare commits

..

5 Commits

Author SHA1 Message Date
6e23123501 Change color scheme a bit to look more Nordic 2020-11-24 21:35:12 -06:00
ca2d30f08c Add delete and undelete keybinds to pager 2020-11-24 18:23:46 -06:00
19fa33aa2a Add trash 2020-11-24 18:23:35 -06:00
dbcc24b6b4 Disable "press any key" prompt 2020-11-24 05:18:39 -06:00
11fce880b8 Add ctrl-r to recall draft 2020-11-24 05:18:24 -06:00
4 changed files with 15 additions and 11 deletions

View File

@ -6,6 +6,7 @@ set folder = "imaps://mail.example.com" # IMAP url
set spoolfile = +Inbox # Inbox
set record = +Sent # Sent (copy all sent messages to this mailbox)
set postponed = +Drafts # copy Drafts to here
set trash = +Trash # send trash here
set imap_check_subscribed # connect to all mailboxes

18
colors
View File

@ -2,20 +2,20 @@
# This is nearly 100% copied from https://github.com/LukeSmithxyz/mutt-wizard/blob/master/share/mutt-wizard.muttrc
# Default index colors:
color index yellow default '.*'
color index_author red default '.*'
color index blue default '.*'
color index_author magenta default '.*'
color index_number blue default
color index_subject cyan default '.*'
# New mail is boldened:
color index brightyellow black "~N"
color index_author brightred black "~N"
color index brightblue black "~N"
color index_author brightmagenta black "~N"
color index_subject brightcyan black "~N"
# Tagged mail is highlighted:
color index brightyellow blue "~T"
color index_author brightred blue "~T"
color index_subject brightcyan blue "~T"
color index blue brightblack "~T"
color index_author brightmagenta brightblack "~T"
color index_subject brightcyan brightblack "~T"
# Other colors and aesthetic settings:
mono bold bold
@ -24,7 +24,7 @@ mono indicator reverse
mono error bold
color normal default default
color indicator brightblack white
color sidebar_highlight red default
color sidebar_highlight green default
color sidebar_divider brightblack black
color sidebar_flagged red black
color sidebar_new green black
@ -35,7 +35,7 @@ color message cyan default
color markers red white
color attachment white default
color search brightmagenta default
color status brightyellow black
color status brightblue black
color hdrdefault brightgreen default
color quoted green default
color quoted1 blue default

View File

@ -18,8 +18,8 @@ bind pager,attach h exit
bind pager j next-line
bind pager k previous-line
bind pager l view-attachments
bind index D delete-message
bind index U undelete-message
bind index,pager D delete-message
bind index,pager U undelete-message
bind index L limit
bind index h noop
bind index l display-message
@ -35,6 +35,8 @@ bind index,pager,browser u half-up
bind index,pager S sync-mailbox
bind index,pager R group-reply
bind pager \CR recall-message
# Mouse wheel
bind index \031 previous-undeleted
bind index \005 next-undeleted

1
muttrc
View File

@ -14,6 +14,7 @@ set index_format = "%4C %Z %D %-15.15F %s (%-4.4c)"
set rfc2047_parameters = yes
set sort = threads
set sort_aux = reverse-date
set wait_key = no # disable "press key to continue"
set markers = no # disable `+` displayed at line wraps
set mark_old = no # only mark messages as read if they have been opened
set mime_forward = yes # attachments are also forwarded