diff options
-rw-r--r-- | mutt/muttrc.symlink | 29 | ||||
-rw-r--r-- | vim/vimrc.symlink | 2 |
2 files changed, 31 insertions, 0 deletions
diff --git a/mutt/muttrc.symlink b/mutt/muttrc.symlink new file mode 100644 index 0000000..9ffef67 --- /dev/null +++ b/mutt/muttrc.symlink @@ -0,0 +1,29 @@ +# General +set editor=`echo \$EDITOR` +set send_charset="utf-8" +set edit_headers=yes +unset user_agent + +# Passwords +source "gpg2 -dq $HOME/.mutt-pwds.gpg |" +# don't let people read them +bind generic,alias,attach,browser,editor,index,compose,pager,pgp,postpone ':' noop + +# IMAP +set imap_user=$my_info_camilstaps_un +set imap_pass=$my_info_camilstaps_pw +set folder=imaps://mail.camilstaps.nl/ +set spoolfile=+INBOX +set imap_check_subscribed + +# SMTP +set record=+Sent +set realname="Camil Staps" +set from=info@camilstaps.nl +set use_from=yes +set smtp_url=smtps://$imap_user:$imap_pass@mail.camilstaps.nl + +# Cache +set header_cache=~/.cache/mutt +set message_cachedir=~/.cache/mutt + diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index b80168d..9c086a7 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -74,3 +74,5 @@ let g:vimtex_latexmk_file_line_error = 0 let g:tex_flavor='latex' +au BufRead /tmp/mutt-* set tw=72 + |