neomutt config files added; gitignore added
This commit is contained in:
parent
7ac6a5cd58
commit
b2c1a1458e
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
*.gpg
|
||||||
|
*.muttrc
|
||||||
|
accounts/
|
||||||
|
*.pyc
|
13
etc/mailcap
Normal file
13
etc/mailcap
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#text/html; qutebrowser %s &; test=test -n "$DISPLAY"; needsterminal;
|
||||||
|
|
||||||
|
text/html; w3m -I %{charset} -T text/html; copiousoutput;
|
||||||
|
#text/html; mv %s %s.html && qutebrowser %s.html > /dev/null; needsterminal;
|
||||||
|
#
|
||||||
|
application/pdf; mv %s %s.pdf && i3 exec mupdf %s.pdf > /dev/null; needsterminal;
|
||||||
|
|
||||||
|
image/*; ~/.config/mutt/etc/muttimage.sh %s ; copiousoutput
|
||||||
|
|
||||||
|
#application/pdf; pdftotext '%s' -; copiousoutput; description=PDF Document;
|
||||||
|
#nametemplate=%s.pdf
|
||||||
|
#
|
||||||
|
text/plain; vim %s ;
|
151
etc/muttcol
Normal file
151
etc/muttcol
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
# vim: filetype=muttrc
|
||||||
|
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# make sure that you are using mutt linked against slang, not ncurses, or
|
||||||
|
# suffer the consequences of weird color issues. use "mutt -v" to check this.
|
||||||
|
|
||||||
|
# custom body highlights -----------------------------------------------
|
||||||
|
# highlight my name and other personally relevant strings
|
||||||
|
#color body yellow default "(ethan|schoonover)"
|
||||||
|
# custom index highlights ----------------------------------------------
|
||||||
|
# messages which mention my name in the body
|
||||||
|
#color index yellow default "~b \"phil(_g|\!| gregory| gold)|pgregory\" !~N !~T !~F !~p !~P"
|
||||||
|
#color index J_cream brightwhite "~b \"phil(_g|\!| gregory| gold)|pgregory\" ~N !~T !~F !~p !~P"
|
||||||
|
#color index yellow cyan "~b \"phil(_g|\!| gregory| gold)|pgregory\" ~T !~F !~p !~P"
|
||||||
|
#color index yellow J_magent "~b \"phil(_g|\!| gregory| gold)|pgregory\" ~F !~p !~P"
|
||||||
|
## messages which are in reference to my mails
|
||||||
|
#color index J_magent default "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" !~N !~T !~F !~p !~P"
|
||||||
|
#color index J_magent brightwhite "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" ~N !~T !~F !~p !~P"
|
||||||
|
#color index J_magent cyan "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" ~T !~F !~p !~P"
|
||||||
|
#color index J_magent red "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" ~F !~p !~P"
|
||||||
|
|
||||||
|
# for background in 16 color terminal, valid background colors include:
|
||||||
|
# base03, bg, black, any of the non brights
|
||||||
|
|
||||||
|
# basic colors ---------------------------------------------------------
|
||||||
|
color normal brightyellow default
|
||||||
|
color error red default
|
||||||
|
color tilde black default
|
||||||
|
color message cyan default
|
||||||
|
color markers red white
|
||||||
|
color attachment white default
|
||||||
|
color search brightmagenta default
|
||||||
|
#color status J_black J_status
|
||||||
|
color status brightyellow black
|
||||||
|
color indicator brightblack yellow
|
||||||
|
color tree yellow default # arrow in threads
|
||||||
|
|
||||||
|
# basic monocolor screen
|
||||||
|
mono bold bold
|
||||||
|
mono underline underline
|
||||||
|
mono indicator reverse
|
||||||
|
mono error bold
|
||||||
|
|
||||||
|
# index ----------------------------------------------------------------
|
||||||
|
|
||||||
|
#color index red default "~D(!~p|~p)" # deleted
|
||||||
|
#color index black default ~F # flagged
|
||||||
|
#color index brightred default ~= # duplicate messages
|
||||||
|
#color index brightgreen default "~A!~N!~T!~p!~Q!~F!~D!~P" # the rest
|
||||||
|
#color index J_base default "~A~N!~T!~p!~Q!~F!~D" # the rest, new
|
||||||
|
color index red default "~A" # all messages
|
||||||
|
color index brightred default "~E" # expired messages
|
||||||
|
color index blue default "~N" # new messages
|
||||||
|
color index blue default "~O" # old messages
|
||||||
|
color index brightmagenta default "~Q" # messages that have been replied to
|
||||||
|
color index brightgreen default "~R" # read messages
|
||||||
|
color index blue default "~U" # unread messages
|
||||||
|
color index blue default "~U~$" # unread, unreferenced messages
|
||||||
|
color index brightyellow default "~v" # messages part of a collapsed thread
|
||||||
|
color index brightyellow default "~P" # messages from me
|
||||||
|
color index cyan default "~p!~F" # messages to me
|
||||||
|
color index cyan default "~N~p!~F" # new messages to me
|
||||||
|
color index cyan default "~U~p!~F" # unread messages to me
|
||||||
|
color index brightgreen default "~R~p!~F" # messages to me
|
||||||
|
color index red default "~F" # flagged messages
|
||||||
|
color index red default "~F~p" # flagged messages to me
|
||||||
|
color index red default "~N~F" # new flagged messages
|
||||||
|
color index red default "~N~F~p" # new flagged messages to me
|
||||||
|
color index red default "~U~F~p" # new flagged messages to me
|
||||||
|
color index black red "~D" # deleted messages
|
||||||
|
color index brightcyan default "~v~(!~N)" # collapsed thread with no unread
|
||||||
|
color index yellow default "~v~(~N)" # collapsed thread with some unread
|
||||||
|
color index green default "~N~v~(~N)" # collapsed thread with unread parent
|
||||||
|
# statusbg used to indicated flagged when foreground color shows other status
|
||||||
|
# for collapsed thread
|
||||||
|
color index red black "~v~(~F)!~N" # collapsed thread with flagged, no unread
|
||||||
|
color index yellow black "~v~(~F~N)" # collapsed thread with some unread & flagged
|
||||||
|
color index green black "~N~v~(~F~N)" # collapsed thread with unread parent & flagged
|
||||||
|
color index green black "~N~v~(~F)" # collapsed thread with unread parent, no unread inside, but some flagged
|
||||||
|
color index cyan black "~v~(~p)" # collapsed thread with unread parent, no unread inside, some to me directly
|
||||||
|
color index yellow red "~v~(~D)" # thread with deleted (doesn't differentiate between all or partial)
|
||||||
|
#color index yellow default "~(~N)" # messages in threads with some unread
|
||||||
|
#color index green default "~S" # superseded messages
|
||||||
|
#color index red default "~T" # tagged messages
|
||||||
|
#color index brightred red "~=" # duplicated messages
|
||||||
|
|
||||||
|
# message headers ------------------------------------------------------
|
||||||
|
|
||||||
|
#color header brightgreen default "^"
|
||||||
|
color hdrdefault brightgreen default
|
||||||
|
color header brightyellow default "^(From)"
|
||||||
|
color header blue default "^(Subject)"
|
||||||
|
|
||||||
|
# body -----------------------------------------------------------------
|
||||||
|
|
||||||
|
color quoted blue default
|
||||||
|
color quoted1 cyan default
|
||||||
|
color quoted2 yellow default
|
||||||
|
color quoted3 red default
|
||||||
|
color quoted4 brightred default
|
||||||
|
|
||||||
|
color signature brightgreen default
|
||||||
|
color bold black default
|
||||||
|
color underline black default
|
||||||
|
color normal default default
|
||||||
|
#
|
||||||
|
color body brightcyan default "[;:][-o][)/(|]" # emoticons
|
||||||
|
color body brightcyan default "[;:][)(|]" # emoticons
|
||||||
|
color body brightcyan default "[*]?((N)?ACK|CU|LOL|SCNR|BRB|BTW|CWYL|\
|
||||||
|
|FWIW|vbg|GD&R|HTH|HTHBE|IMHO|IMNSHO|\
|
||||||
|
|IRL|RTFM|ROTFL|ROFL|YMMV)[*]?"
|
||||||
|
color body brightcyan default "[ ][*][^*]*[*][ ]?" # more emoticon?
|
||||||
|
color body brightcyan default "[ ]?[*][^*]*[*][ ]" # more emoticon?
|
||||||
|
|
||||||
|
## pgp
|
||||||
|
|
||||||
|
color body red default "(BAD signature)"
|
||||||
|
color body cyan default "(Good signature)"
|
||||||
|
color body brightblack default "^gpg: Good signature .*"
|
||||||
|
color body brightyellow default "^gpg: "
|
||||||
|
color body brightyellow red "^gpg: BAD signature from.*"
|
||||||
|
mono body bold "^gpg: Good signature"
|
||||||
|
mono body bold "^gpg: BAD signature from.*"
|
||||||
|
|
||||||
|
# yes, an insance URL regex
|
||||||
|
color body red default "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-f][0-9a-f])*@)?((([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)(:[0-9]+)?)|([a-z0-9_.!~*'()$,;:@&=+-]|%[0-9a-f][0-9a-f])+)(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?(#([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?|(www|ftp)\\.(([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?(:[0-9]+)?(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?(#([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?)[^].,:;!)? \t\r\n<>\"]"
|
||||||
|
# and a heavy handed email regex
|
||||||
|
#color body J_magent default "((@(([0-9a-z-]+\\.)*[0-9a-z-]+\\.?|#[0-9]+|\\[[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\]),)*@(([0-9a-z-]+\\.)*[0-9a-z-]+\\.?|#[0-9]+|\\[[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\]):)?[0-9a-z_.+%$-]+@(([0-9a-z-]+\\.)*[0-9a-z-]+\\.?|#[0-9]+|\\[[0-2]?[0-9]?[0-9]\\.[0-2]?[0-9]?[0-9]\\.[0-2]?[0-9]?[0-9]\\.[0-2]?[0-9]?[0-9]\\])"
|
||||||
|
|
||||||
|
# Various smilies and the like
|
||||||
|
#color body brightwhite default "<[Gg]>" # <g>
|
||||||
|
#color body brightwhite default "<[Bb][Gg]>" # <bg>
|
||||||
|
#color body yellow default " [;:]-*[})>{(<|]" # :-) etc...
|
||||||
|
# *bold*
|
||||||
|
#color body blue default "(^|[[:space:][:punct:]])\\*[^*]+\\*([[:space:][:punct:]]|$)"
|
||||||
|
#mono body bold "(^|[[:space:][:punct:]])\\*[^*]+\\*([[:space:][:punct:]]|$)"
|
||||||
|
# _underline_
|
||||||
|
#color body blue default "(^|[[:space:][:punct:]])_[^_]+_([[:space:][:punct:]]|$)"
|
||||||
|
#mono body underline "(^|[[:space:][:punct:]])_[^_]+_([[:space:][:punct:]]|$)"
|
||||||
|
# /italic/ (Sometimes gets directory names)
|
||||||
|
#color body blue default "(^|[[:space:][:punct:]])/[^/]+/([[:space:][:punct:]]|$)"
|
||||||
|
#mono body underline "(^|[[:space:][:punct:]])/[^/]+/([[:space:][:punct:]]|$)"
|
||||||
|
|
||||||
|
# Border lines.
|
||||||
|
#color body blue default "( *[-+=#*~_]){6,}"
|
||||||
|
|
||||||
|
#folder-hook . "color status J_black J_status "
|
||||||
|
#folder-hook gmail/inbox "color status J_black yellow "
|
||||||
|
#folder-hook gmail/important "color status J_black yellow "
|
||||||
|
|
8
etc/muttimage.sh
Executable file
8
etc/muttimage.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
#### Determine size of Terminal
|
||||||
|
height=`stty size | awk 'BEGIN {FS = " "} {print $1;}'`
|
||||||
|
width=`stty size | awk 'BEGIN {FS = " "} {print $2;}'`
|
||||||
|
|
||||||
|
### Display Image / offset with mutt bar
|
||||||
|
echo -e "2;3;\n0;1;210;20;$((width*7-250));$((height*14-100));0;0;0;0;$1\n4;\n3;" | /usr/lib/w3m/w3mimgdisplay &
|
@ -16,7 +16,7 @@ fulladdr=$(\
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Check to see if domain is in domain list
|
# Check to see if domain is in domain list
|
||||||
serverinfo=$(cat autoconf/domains.csv | grep -w ^${fulladdr##*@})
|
serverinfo=$(cat "$muttdir"autoconf/domains.csv | grep -w ^${fulladdr##*@})
|
||||||
if [ -z "$serverinfo" ];
|
if [ -z "$serverinfo" ];
|
||||||
then
|
then
|
||||||
echo No suitable match. && exit
|
echo No suitable match. && exit
|
||||||
|
17
muttrc
17
muttrc
@ -1,12 +1,13 @@
|
|||||||
# vim: filetype=muttrc
|
# vim: filetype=muttrc
|
||||||
# This is the general mutt config which has the settings that all accounts use.
|
# This is the general mutt config which has the settings that all accounts use.
|
||||||
|
source etc/muttcol
|
||||||
set sleep_time = 0
|
set sleep_time = 0
|
||||||
set sort = 'reverse-date'
|
set sort = 'reverse-date'
|
||||||
set editor = vim
|
set editor = vim
|
||||||
#set copy = no
|
#set copy = no
|
||||||
set timeout = "5"
|
set timeout = "5"
|
||||||
set mail_check = "10"
|
set mail_check = "10"
|
||||||
set mailcap_path = ~/.config/mutt/mailcap
|
set mailcap_path = ~/.config/mutt/etc/mailcap
|
||||||
set date_format="%m/%d %I:%M"
|
set date_format="%m/%d %I:%M"
|
||||||
set index_format="%2C %Z %D %-15.15F %s (%-4.4c)"
|
set index_format="%2C %Z %D %-15.15F %s (%-4.4c)"
|
||||||
set markers = no
|
set markers = no
|
||||||
@ -21,10 +22,10 @@ mono bold bold
|
|||||||
mono underline underline
|
mono underline underline
|
||||||
mono indicator reverse
|
mono indicator reverse
|
||||||
color index yellow default '.*'
|
color index yellow default '.*'
|
||||||
#color index_author red default '.*'
|
color index_author red default '.*'
|
||||||
#color index_number blue default
|
color index_number blue default
|
||||||
#color index_subject cyan default '.s'
|
color index_subject cyan default '.s'
|
||||||
#color index_size green default
|
color index_size green default
|
||||||
color normal default default
|
color normal default default
|
||||||
color body brightred default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
|
color body brightred default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
|
||||||
color body brightblue default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
|
color body brightblue default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
|
||||||
@ -43,3 +44,9 @@ macro index,pager \Cu |urlview\n
|
|||||||
bind index \Cf noop
|
bind index \Cf noop
|
||||||
macro index \Cf "<enter-command>unset wait_key<enter><shell-escape>read -p 'notmuch query: ' x; echo \$x >~/.cache/mutt_terms<enter><limit>~i \"\`notmuch search --output=messages \$(cat ~/.cache/mutt_terms) | head -n 600 | perl -le '@a=<>;chomp@a;s/\^id:// for@a;$,=\"|\";print@a'\`\"<enter>" "show only messages matching a notmuch pattern"
|
macro index \Cf "<enter-command>unset wait_key<enter><shell-escape>read -p 'notmuch query: ' x; echo \$x >~/.cache/mutt_terms<enter><limit>~i \"\`notmuch search --output=messages \$(cat ~/.cache/mutt_terms) | head -n 600 | perl -le '@a=<>;chomp@a;s/\^id:// for@a;$,=\"|\";print@a'\`\"<enter>" "show only messages matching a notmuch pattern"
|
||||||
macro index A "<limit>all\n" "show all messages (undo limit)"
|
macro index A "<limit>all\n" "show all messages (undo limit)"
|
||||||
|
macro index,pager i1 '<sync-mailbox><enter-command>source /home/luke/.config/mutt/accounts/luke.muttrc<enter><change-folder>!<enter>'
|
||||||
|
source /home/luke/.config/mutt/accounts/luke.muttrc
|
||||||
|
macro index,pager i2 '<sync-mailbox><enter-command>source /home/luke/.config/mutt/accounts/gmail.muttrc<enter><change-folder>!<enter>'
|
||||||
|
macro index,pager i3 '<sync-mailbox><enter-command>source /home/luke/.config/mutt/accounts/gkulade.muttrc<enter><change-folder>!<enter>'
|
||||||
|
macro index,pager i4 '<sync-mailbox><enter-command>source /home/luke/.config/mutt/accounts/evenor.muttrc<enter><change-folder>!<enter>'
|
||||||
|
macro index,pager i5 '<sync-mailbox><enter-command>source /home/luke/.config/mutt/accounts/kulade.muttrc<enter><change-folder>!<enter>'
|
||||||
|
Loading…
Reference in New Issue
Block a user