summaryrefslogtreecommitdiffstats
path: root/mutt/.config/mutt/local
diff options
context:
space:
mode:
Diffstat (limited to 'mutt/.config/mutt/local')
-rw-r--r--mutt/.config/mutt/local16
1 files changed, 16 insertions, 0 deletions
diff --git a/mutt/.config/mutt/local b/mutt/.config/mutt/local
new file mode 100644
index 0000000..636bd29
--- /dev/null
+++ b/mutt/.config/mutt/local
@@ -0,0 +1,16 @@
+set mbox_type=Maildir
+set folder="~/Maildir"
+set spoolfile="~/Maildir/INBOX"
+mailboxes `\
+ for folder in ~/Maildir/*; do\
+ basename=$(basename "$folder");\
+ if [ "x${basename:0:4}" != "xold."\
+ -a "x$basename" != "xspam"\
+ -a "x$basename" != "xnotmuch" ]; then\
+ echo -n "\"=$basename\" ";\
+ fi\
+ done`
+macro index R "<enter-command>unset wait_key<enter><shell-escape>kill -HUP $(systemctl --user show --property MainPID --value mbsyncloop)<enter><enter-command>set wait_key<enter>" "fetch mail with mbsync"
+set timeout=3
+
+# vim: ft=neomuttrc