Update
This commit is contained in:
parent
1ce53c9a68
commit
6c9963ea36
163 changed files with 863 additions and 1630 deletions
2
mutt/mailcap
Normal file
2
mutt/mailcap
Normal file
|
@ -0,0 +1,2 @@
|
|||
text/html; lynx -assume_charset=%{charset} -display_charset=utf-8 -dump %s; nametemplate=%s.html; copiousoutput
|
||||
|
49
mutt/muttrc
Normal file
49
mutt/muttrc
Normal file
|
@ -0,0 +1,49 @@
|
|||
set header_cache = "~/.cache/mutt"
|
||||
set imap_check_subscribed
|
||||
set imap_keepalive = 300
|
||||
unset imap_passive
|
||||
set mail_check = 60
|
||||
set mbox_type=Maildir
|
||||
set sort=threads
|
||||
set sort_aux=last-date-received
|
||||
set sleep_time = 0
|
||||
|
||||
|
||||
## Work
|
||||
source "~/.mutt/work"
|
||||
folder-hook $folder 'source ~/.mutt/work'
|
||||
|
||||
## Uni
|
||||
source "~/.mutt/uni"
|
||||
folder-hook marcel.kapfer@uni-ulm.de 'source ~/.mutt/uni'
|
||||
|
||||
## Private
|
||||
source "~/.mutt/private"
|
||||
folder-hook marcelmichaelkapfer@gmail.com 'source ~/.mutt/private'
|
||||
|
||||
|
||||
## Shortcuts
|
||||
macro index,pager <f2> '<sync-mailbox><enter-command>source ~/.mutt/private<enter><change-folder>!<enter>'
|
||||
|
||||
macro index,pager <f3> '<sync-mailbox><enter-command>source ~/.mutt/work<enter><change-folder>!<enter>'
|
||||
|
||||
macro index,pager <f4> '<sync-mailbox><enter-command>source ~/.mutt/uni<enter><change-folder>!<enter>'
|
||||
|
||||
## Settings
|
||||
|
||||
set send_charset="utf-8"
|
||||
|
||||
## Theming
|
||||
|
||||
source ~/.mutt/theme
|
||||
source /usr/share/doc/mutt/samples/gpg.rc
|
||||
|
||||
## HTML mails
|
||||
|
||||
set mailcap_path = ~/.mutt/mailcap
|
||||
auto_view text/html
|
||||
|
||||
## Abook
|
||||
set query_command= "abook --mutt-query '%s'"
|
||||
macro index,pager a "<pipe-message>abook --add-email-quiet<return>" "Add this sender to Abook"
|
||||
bind editor <Tab> complete-query
|
6
mutt/sig
Normal file
6
mutt/sig
Normal file
|
@ -0,0 +1,6 @@
|
|||
Marcel Kapfer (mmk2410)
|
||||
marcel-kapfer.de
|
||||
OpenPGP: 0x09F21B09
|
||||
Google+: +MarcelMichaelKapfer
|
||||
Twitter: @mmk2410
|
||||
GitHub: /mmk2410
|
87
mutt/theme
Normal file
87
mutt/theme
Normal file
|
@ -0,0 +1,87 @@
|
|||
## Theme kindly inspired from
|
||||
## http://nongeekshandbook.blogspot.ie/2009/03/mutt-color-configuration.html
|
||||
|
||||
## Colours for items in the index
|
||||
color index brightcyan black ~N
|
||||
color index brightred black ~O
|
||||
color index brightyellow black ~F
|
||||
color index black green ~T
|
||||
color index brightred black ~D
|
||||
mono index bold ~N
|
||||
mono index bold ~F
|
||||
mono index bold ~T
|
||||
mono index bold ~D
|
||||
|
||||
## Highlights inside the body of a message.
|
||||
|
||||
## URLs
|
||||
color body brightgreen black "(http|ftp|news|telnet|finger)://[^ \"\t\r\n]*"
|
||||
color body brightgreen black "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
|
||||
mono body bold "(http|ftp|news|telnet|finger)://[^ \"\t\r\n]*"
|
||||
mono body bold "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
|
||||
|
||||
## Email addresses.
|
||||
color body brightgreen black "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
|
||||
|
||||
## Header
|
||||
color header green black "^from:"
|
||||
color header green black "^to:"
|
||||
color header green black "^cc:"
|
||||
color header green black "^date:"
|
||||
color header yellow black "^newsgroups:"
|
||||
color header yellow black "^reply-to:"
|
||||
color header brightcyan black "^subject:"
|
||||
color header red black "^x-spam-rule:"
|
||||
color header green black "^x-mailer:"
|
||||
color header yellow black "^message-id:"
|
||||
color header yellow black "^Organization:"
|
||||
color header yellow black "^Organisation:"
|
||||
color header yellow black "^User-Agent:"
|
||||
color header yellow black "^message-id: .*pine"
|
||||
color header yellow black "^X-Fnord:"
|
||||
color header yellow black "^X-WebTV-Stationery:"
|
||||
|
||||
color header red black "^x-spam-rule:"
|
||||
color header green black "^x-mailer:"
|
||||
color header yellow black "^message-id:"
|
||||
color header yellow black "^Organization:"
|
||||
color header yellow black "^Organisation:"
|
||||
color header yellow black "^User-Agent:"
|
||||
color header yellow black "^message-id: .*pine"
|
||||
color header yellow black "^X-Fnord:"
|
||||
color header yellow black "^X-WebTV-Stationery:"
|
||||
color header yellow black "^X-Message-Flag:"
|
||||
color header yellow black "^X-Spam-Status:"
|
||||
color header yellow black "^X-SpamProbe:"
|
||||
color header red black "^X-SpamProbe: SPAM"
|
||||
|
||||
## Coloring quoted text - coloring the first 7 levels:
|
||||
color quoted cyan black
|
||||
color quoted1 yellow black
|
||||
color quoted2 red black
|
||||
color quoted3 green black
|
||||
color quoted4 cyan black
|
||||
color quoted5 yellow black
|
||||
color quoted6 red black
|
||||
color quoted7 green black
|
||||
|
||||
## Default color definitions
|
||||
#color hdrdefault white green
|
||||
color signature brightmagenta black
|
||||
color indicator black cyan
|
||||
color attachment black green
|
||||
color error red black
|
||||
color message white black
|
||||
color search brightwhite magenta
|
||||
color status brightyellow blue
|
||||
color tree brightblue black
|
||||
color normal white black
|
||||
color tilde green black
|
||||
color bold brightyellow black
|
||||
#color underline magenta black
|
||||
color markers brightcyan black
|
||||
|
||||
## Colour definitions when on a mono screen
|
||||
mono bold bold
|
||||
mono underline underline
|
||||
mono indicator reverse
|
Loading…
Add table
Add a link
Reference in a new issue