From 5c6cd059e8395d7f24d4b199e59c8c2f562dc438 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 3 Nov 2013 21:21:21 +0100 Subject: New stow hierarchy --- mutt/.mutt/muttrc | 121 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 mutt/.mutt/muttrc (limited to 'mutt/.mutt/muttrc') diff --git a/mutt/.mutt/muttrc b/mutt/.mutt/muttrc new file mode 100644 index 0000000..2af358d --- /dev/null +++ b/mutt/.mutt/muttrc @@ -0,0 +1,121 @@ +# ~/.muttrc +### + +# directories and commands +set alias_file = ~/.mutt/alias # alias file +set header_cache = ~/.mutt/cache/headers # where to store headers +set message_cachedir = ~/.mutt/cache/bodies # where to store bodies +set certificate_file = ~/.mutt/certificates # where to store certs +set mailcap_path = ~/.mutt/mailcap # entries for filetypes +set tmpdir = ~/.mutt/temp # where to keep temp files +set editor = "emacsclient -c" + +# main options +set mbox_type = Maildir # mailbox type +set folder = ~/documents/mail # mailbox location +set spoolfile = "+ninthfloor/INBOX" # ninthfloor is the default inbox +set timeout = 3 # idle time before scanning +set mail_check = 0 # minimum time between scans +set sort_alias = alias # sort alias file by alias +set reverse_alias # show names from alias file in index +unset move # gmail does that +set delete # don't ask, just do +unset confirmappend # don't ask, just do! +set quit # don't ask, just do!! +unset mark_old # read/new is good enough for me +set beep_new # bell on new mails +set pipe_decode # strip headers and eval mimes when piping +set thorough_search # strip headers and eval mimes before searching +set ssl_force_tls = yes + +# index options +set sort = threads # like gmail +set sort_aux = last-date-received # not like gmail +set uncollapse_jump # don't collapse on an unread message +#set sort_re # thread based on regex + +# pager options +set pager_index_lines = 10 # number of index lines to + # show +set pager_context = 5 # number of context lines + # to show +set pager_stop # don't go to next message + # automatically +set menu_scroll # scroll in menus +set smart_wrap # don't split words +set tilde # show tildes like in vim +unset markers # no ugly plus signs +auto_view text/html # view html automatically +alternative_order text/plain text/enriched text/html # save html for last +set quote_regexp = "^( {0,4}[>|:#%]| {0,4}[a-z0-9]+[>|]+)+| {4}" + +# formats +set status_format = "-%r %f [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?] (%s/%S) %> (%P) " +set date_format = "%d %b %H:%M" +set index_format = "%3C %Z %D [%-12.12L] %s" +set alias_format = "%4n %t %-20a %r" + +# composing mail +set realname = "Tom Willemse" # who am I? +set envelope_from # which from? +set sig_dashes # dashes before my sig... sweet +set edit_headers # show headers when composing +set fast_reply # skip to compose when replying +set askcc # ask for CC: +set fcc_attach # save attachments with the body +unset mime_forward # forward attachments as part fo body +set forward_format = "Fwd: %s" # format for subject when forwarding +set forward_decode # decode when forwarding +set attribution = "On %d, %n wrote:" # set the attribution +set reply_to # reply to Reply to: field +set reverse_name # reply as whomever it was to +set include # include message in replies +set forward_quote # include message inforwards + +# headers to show +ignore * # ignore all headers +unignore from: to: cc: date: subject: # show only these +hdr_order from: to: cc: date: subject: # and in this order + +# boxes +mailboxes +arch/INBOX #+arch/archive +arch/sent +arch/drafts +arch/spam +arch/trash +mailboxes +gmail/INBOX #+gmail/archive +gmail/sent +gmail/drafts +gmail/spam +gmail/trash +mailboxes +iactor/INBOX #+iactor/INBOX.Admin +iactor/INBOX.Important +iactor/INBOX.Intern +iactor/INBOX.Taken +iactor/Sent +iactor/Drafts +iactor/Trash +mailboxes +aethon/INBOX +mailboxes +ninthfloor/INBOX +ninthfloor/mailinglists +mailboxes +ryuslash.org/INBOX + +# always sourced +source $alias_file # required for functionality +source ~/.mutt/colors.muttrc # source colors file +source ~/.mutt/ninthfloor.muttrc # source arch as default + +# account specific sources +folder-hook arch/* source ~/.mutt/arch.muttrc +folder-hook gmail/* source ~/.mutt/gmail.muttrc +folder-hook iactor/* source ~/.mutt/iactor.muttrc +folder-hook aethon/* source ~/.mutt/aethon.muttrc +folder-hook ninthfloor/* source ~/.mutt/ninthfloor.muttrc +folder-hook ryuslash.org/* source ~/.mutt/ryuslash.org.muttrc + +# abook +set query_command = "abook --mutt-query '%s'" + +# macros +macro index I "!" "go to Inbox" +macro index Z "/usr/bin/offlineimap -q -o" "sync IMAP" +macro generic,index,pager \ca "abook" "launch abook" +macro index,pager A "abook --add-email" "add the sender address to abook" +macro generic,index,pager 1 "=ninthfloor/INBOX" "Show ninthfloor inbox" +macro generic,index,pager 2 "=gmail/INBOX" "Show gmail inbox" +macro generic,index,pager 3 "=arch/INBOX" "Show arch inbox" +macro generic,index,pager 4 "=aethon/INBOX" "Show aethon inbox" +macro generic,index,pager 5 "=ryuslash.org/INBOX" "Show ryuslash.org inbox" +macro generic,index,pager 6 "=iactor/INBOX" "Show iactor inbox" + +# key bindings +bind pager \177 previous-line # default didn't want to work anymore +#bind generic i what-key + +# mailing lists +subscribe dev@suckless.org -- cgit v1.2.3-54-g00ecf