From 4b66da7ff8060fffdeac1cc4cb27f3182b3f2d46 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Sun, 23 Feb 2014 16:59:47 +0100 Subject: First commit of dotfiles. --- muttrc | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 muttrc (limited to 'muttrc') diff --git a/muttrc b/muttrc new file mode 100644 index 0000000..4cb7382 --- /dev/null +++ b/muttrc @@ -0,0 +1,94 @@ +# Load passwords +#source "gpg2 -dq $HOME/.mutt/pass.gpg |" + +# Source +source ~/.mutt/sol.muttrc +source ~/.mutt/crypto.rc + +#Load aliases +set alias_file=$HOME/.mutt/aliases.txt +source $alias_file + + +#Offline Imap config +set mbox_type = Maildir +set sendmail = /usr/bin/msmtp + +set folder = ~/.mail/ +set spoolfile = "+Gmail/INBOX" +set mbox = "+Gmail/archive" +set postponed = "+Gmail/drafts" +unset record + +mailboxes +INBOX + +macro index D \ + "+Gmail/trash" \ + "move message to the trash" + +macro index S \ + "+Gmail/spam" \ + "mark message as spam" + + +# Gmail conf +set from = "vasil.zlatanov@gmail.com" +set realname = "Vasil Zlatanov" + +# Change the following line to a different editor you prefer. +set editor = "vim" + +# Basic config, you can leave this as is +#set hostname = gmail.com +set mail_check = 5 +set timeout = 5 +unset imap_passive +set header_cache=~/.mutt/cache/headers +set message_cachedir=~/.mutt/cache/bodies +set certificate_file=~/.mutt/certificates +set move = no +set include +set sort = 'threads' +set sort_aux = 'reverse-last-date-received' +set auto_tag = yes +ignore "Authentication-Results:" +ignore "DomainKey-Signature:" +ignore "DKIM-Signature:" +hdr_order Date From To Cc +alternative_order text/plain text/html * +auto_view text/html + +# Gmail-style keyboard shortcuts +macro index,pager gi "=Gmail/INBOX" "Go to inbox" +macro index,pager ga "=Gmail/archive" "Go to all mail" +macro index,pager gs "=Gmail/sent" "Go to sent mail" +macro index,pager gr "=Gmail/flagged" "Go to starred messages" +macro index,pager gj "=Gmail/spam" "Go to spam" +macro index,pager gt "=Gmail/trash" "Go to trash" +macro index,pager gd "=Gmail/drafts" "Go to drafts" + +# Other config +set delete +#set edit_headers +set fast_reply +set help +set pager_stop + +# Bindings +bind index,pager "n" next-unread + + +# Write in Aliases when opening email +set display_filter='$HOME/.mutt/alias.sh' + +# Mutt LED notification +set status_format="$HOME/.mutt/notify.sh '%r %f (%L) [Msgs:%?M?%M/?%m%?n? New:%n?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?]'|" + +#click link +macro pager \cb 'urlview' 'Follow links with urlview' + + +bind index gg first-entry +bind index G last-entry + +bind index R group-reply -- cgit v1.2.3-54-g00ecf