diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2021-05-01 11:12:23 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2021-05-01 11:12:23 -0400 |
commit | 16436494f6b7fff2eae8418746af01ee52f7565d (patch) | |
tree | 665608c8d4e858d757502e3795db3ef7821c4869 /.config/mutt | |
parent | 9ed9de5006d437e126c5871dc0cf38a02825aabb (diff) | |
parent | a8604b71a10edda8c08b909ce1fb63aca653d77e (diff) |
Merge branch 'master' of git://git.chausse.xyz/dotfiles
Diffstat (limited to '.config/mutt')
-rw-r--r-- | .config/mutt/colors | 2 | ||||
-rw-r--r-- | .config/mutt/my-configs | 12 |
2 files changed, 10 insertions, 4 deletions
diff --git a/.config/mutt/colors b/.config/mutt/colors index 6c1b368..d362899 100644 --- a/.config/mutt/colors +++ b/.config/mutt/colors @@ -26,7 +26,7 @@ color sidebar_ordinary color1 default color sidebar_highlight color14 default color sidebar_divider color4 black color sidebar_flagged color9 black -color sidebar_new color14 black +color sidebar_new color13 black color normal color11 default color error color2 default color tilde black default diff --git a/.config/mutt/my-configs b/.config/mutt/my-configs index 69576b5..bd59b70 100644 --- a/.config/mutt/my-configs +++ b/.config/mutt/my-configs @@ -2,18 +2,19 @@ # Add the following line to your muttrc to have them: # source $HOME/.config/mutt/my-configs -# GOOBOOK: +# GOOBOOK: {{{ # goobook let's you use google contacts information. # You install it with pip: pip install --user goobook # Query emails set query_command="goobook query %s" # Add email to contacts macro index,pager a "<pipe-message>goobook add<return>" "add the sender address to Google contacts" + # Note that if you use an old version of mutt-wizard, # you will need to disable abook in it's script: # sed -i "s/^set\squery_command.*$//" /usr/share/mutt-wizard/mutt-wizard.muttrc -# PGP Encryption: +# PGP Encryption: {{{ # I want pgp encryption by default when possible. # The following line makes this possible: set crypt_use_gpgme=yes @@ -21,10 +22,15 @@ set crypt_autosign = yes set pgp_self_encrypt = yes set pgp_default_key = 'ABC4A5A7430D6309ACBD219044F94DD6456590C3' set pgp_import_command = "gpg --no-verbose --import -v %f" +# }}} -# Muttprint: +# Muttprint: {{{ set print_command="muttprint" # Dump all headers # macro index p "<display-toggle-weed> <print-message> <display-toggle-weed> <exit>" +# }}} +# Colors {{{ +source colors +# }}} # vim: filetype=neomuttrc |