From c915def7a196fd412a95e1614078531d6d36bb6d Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Sun, 16 Apr 2017 13:05:33 +0200 Subject: massive upgrade to new laptop --- Mail/mutt/mailcap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Mail/mutt') diff --git a/Mail/mutt/mailcap b/Mail/mutt/mailcap index 2ff7cf2..bc80a85 100644 --- a/Mail/mutt/mailcap +++ b/Mail/mutt/mailcap @@ -1,3 +1,3 @@ application/*; mkdir -p /tmp/mutt \; cp %s /tmp/mutt \; rifle /tmp/mutt/$(basename %s) & -text/html; vimb '%s' &; test=test -n "$DISPLAY"; needsterminal; +text/html; chromium '%s' &; test=test -n "$DISPLAY"; needsterminal; text/html; w3m -I %{charset} -T text/html; copiousoutput; -- cgit v1.2.3-54-g00ecf From 88b5692a4c877d52890b9ac363dbb8dfc15ba46e Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Wed, 20 Sep 2017 00:32:20 +0100 Subject: let mutt clear bar notification --- Mail/mutt/notify.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'Mail/mutt') diff --git a/Mail/mutt/notify.sh b/Mail/mutt/notify.sh index a628c52..d4c8d30 100755 --- a/Mail/mutt/notify.sh +++ b/Mail/mutt/notify.sh @@ -21,6 +21,7 @@ if [ $status -eq 0 ];then touch ~/.mutt/newmail else xset -led 1 + echo 'Ixlear' > /tmp/panel-fifo if [ -e ~/.mutt/newmail ];then rm ~/.mutt/newmail fi -- cgit v1.2.3-54-g00ecf From 21d47afd3a0c19280aef4dcc69a30a3af97f026c Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Sun, 15 Oct 2017 18:08:11 +0100 Subject: add ical support to mutt --- Mail/mutt/mailcap | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Mail/mutt') diff --git a/Mail/mutt/mailcap b/Mail/mutt/mailcap index bc80a85..fbf60e4 100644 --- a/Mail/mutt/mailcap +++ b/Mail/mutt/mailcap @@ -1,3 +1,5 @@ application/*; mkdir -p /tmp/mutt \; cp %s /tmp/mutt \; rifle /tmp/mutt/$(basename %s) & -text/html; chromium '%s' &; test=test -n "$DISPLAY"; needsterminal; +text/html; chromium-dev '%s' &; test=test -n "$DISPLAY"; needsterminal; text/html; w3m -I %{charset} -T text/html; copiousoutput; +text/calendar; mutt-ical.py -i -e "vasil.zlatanov15@imperial.ac.uk" %s +application/ics; mutt-ical.py -i -e "vasil.zlatanov15@imperial.ac.uk" %s -- cgit v1.2.3-54-g00ecf From 2986d622ad73bfd6bc997cde556ecac6b126bbaf Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Sun, 15 Oct 2017 18:47:04 +0100 Subject: make vim rewrap --- Mail/mutt/ftplugin/mail.vim | 2 ++ Mail/muttrc | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 Mail/mutt/ftplugin/mail.vim (limited to 'Mail/mutt') diff --git a/Mail/mutt/ftplugin/mail.vim b/Mail/mutt/ftplugin/mail.vim new file mode 100644 index 0000000..9064c78 --- /dev/null +++ b/Mail/mutt/ftplugin/mail.vim @@ -0,0 +1,2 @@ +setl tw=72 +setl fo=aw diff --git a/Mail/muttrc b/Mail/muttrc index df58018..1969b49 100644 --- a/Mail/muttrc +++ b/Mail/muttrc @@ -128,6 +128,9 @@ set fast_reply unset help set pager_stop +# Make hard wrap not so hard +set text_flowed=yes + # Remove + on wraps set markers=no set smart_wrap -- cgit v1.2.3-54-g00ecf