Compare commits
3 Commits
dbcc24b6b4
...
master
Author | SHA1 | Date | |
---|---|---|---|
6e23123501
|
|||
ca2d30f08c
|
|||
19fa33aa2a
|
@ -6,6 +6,7 @@ set folder = "imaps://mail.example.com" # IMAP url
|
|||||||
set spoolfile = +Inbox # Inbox
|
set spoolfile = +Inbox # Inbox
|
||||||
set record = +Sent # Sent (copy all sent messages to this mailbox)
|
set record = +Sent # Sent (copy all sent messages to this mailbox)
|
||||||
set postponed = +Drafts # copy Drafts to here
|
set postponed = +Drafts # copy Drafts to here
|
||||||
|
set trash = +Trash # send trash here
|
||||||
set imap_check_subscribed # connect to all mailboxes
|
set imap_check_subscribed # connect to all mailboxes
|
||||||
|
|
||||||
|
|
||||||
|
18
colors
18
colors
@ -2,20 +2,20 @@
|
|||||||
# This is nearly 100% copied from https://github.com/LukeSmithxyz/mutt-wizard/blob/master/share/mutt-wizard.muttrc
|
# This is nearly 100% copied from https://github.com/LukeSmithxyz/mutt-wizard/blob/master/share/mutt-wizard.muttrc
|
||||||
|
|
||||||
# Default index colors:
|
# Default index colors:
|
||||||
color index yellow default '.*'
|
color index blue default '.*'
|
||||||
color index_author red default '.*'
|
color index_author magenta default '.*'
|
||||||
color index_number blue default
|
color index_number blue default
|
||||||
color index_subject cyan default '.*'
|
color index_subject cyan default '.*'
|
||||||
|
|
||||||
# New mail is boldened:
|
# New mail is boldened:
|
||||||
color index brightyellow black "~N"
|
color index brightblue black "~N"
|
||||||
color index_author brightred black "~N"
|
color index_author brightmagenta black "~N"
|
||||||
color index_subject brightcyan black "~N"
|
color index_subject brightcyan black "~N"
|
||||||
|
|
||||||
# Tagged mail is highlighted:
|
# Tagged mail is highlighted:
|
||||||
color index brightyellow blue "~T"
|
color index blue brightblack "~T"
|
||||||
color index_author brightred blue "~T"
|
color index_author brightmagenta brightblack "~T"
|
||||||
color index_subject brightcyan blue "~T"
|
color index_subject brightcyan brightblack "~T"
|
||||||
|
|
||||||
# Other colors and aesthetic settings:
|
# Other colors and aesthetic settings:
|
||||||
mono bold bold
|
mono bold bold
|
||||||
@ -24,7 +24,7 @@ mono indicator reverse
|
|||||||
mono error bold
|
mono error bold
|
||||||
color normal default default
|
color normal default default
|
||||||
color indicator brightblack white
|
color indicator brightblack white
|
||||||
color sidebar_highlight red default
|
color sidebar_highlight green default
|
||||||
color sidebar_divider brightblack black
|
color sidebar_divider brightblack black
|
||||||
color sidebar_flagged red black
|
color sidebar_flagged red black
|
||||||
color sidebar_new green black
|
color sidebar_new green black
|
||||||
@ -35,7 +35,7 @@ color message cyan default
|
|||||||
color markers red white
|
color markers red white
|
||||||
color attachment white default
|
color attachment white default
|
||||||
color search brightmagenta default
|
color search brightmagenta default
|
||||||
color status brightyellow black
|
color status brightblue black
|
||||||
color hdrdefault brightgreen default
|
color hdrdefault brightgreen default
|
||||||
color quoted green default
|
color quoted green default
|
||||||
color quoted1 blue default
|
color quoted1 blue default
|
||||||
|
4
keybinds
4
keybinds
@ -18,8 +18,8 @@ bind pager,attach h exit
|
|||||||
bind pager j next-line
|
bind pager j next-line
|
||||||
bind pager k previous-line
|
bind pager k previous-line
|
||||||
bind pager l view-attachments
|
bind pager l view-attachments
|
||||||
bind index D delete-message
|
bind index,pager D delete-message
|
||||||
bind index U undelete-message
|
bind index,pager U undelete-message
|
||||||
bind index L limit
|
bind index L limit
|
||||||
bind index h noop
|
bind index h noop
|
||||||
bind index l display-message
|
bind index l display-message
|
||||||
|
Reference in New Issue
Block a user