my-configs (1170B) - raw
1 # These are my personal configs on top of mutt-wizard. 2 # Add the following line to your muttrc to have them: 3 # source $HOME/.config/mutt/my-configs 4 5 # GOOBOOK: {{{ 6 # goobook let's you use google contacts information. 7 # You install it with pip: pip install --user goobook 8 # Query emails 9 set query_command="goobook query %s" 10 # Add email to contacts 11 macro index,pager a "<pipe-message>goobook add<return>" "add the sender address to Google contacts" 12 13 # Note that if you use an old version of mutt-wizard, 14 # you will need to disable abook in it's script: 15 # sed -i "s/^set\squery_command.*$//" /usr/share/mutt-wizard/mutt-wizard.muttrc 16 17 # PGP Encryption: {{{ 18 # I want pgp encryption by default when possible. 19 # The following line makes this possible: 20 set crypt_use_gpgme=yes 21 set crypt_autosign = yes 22 set pgp_self_encrypt = yes 23 set pgp_default_key = 'ABC4A5A7430D6309ACBD219044F94DD6456590C3' 24 set pgp_import_command = "gpg --no-verbose --import -v %f" 25 # }}} 26 27 # Muttprint: {{{ 28 set print_command="muttprint" 29 # Dump all headers 30 # macro index p "<display-toggle-weed> <print-message> <display-toggle-weed> <exit>" 31 # }}} 32 # Colors {{{ 33 source colors 34 # }}} 35 36 # vim: filetype=neomuttrc