diff options
| -rw-r--r-- | bashrc | 2 | ||||
| -rw-r--r-- | debian/devscripts | 1 | ||||
| -rw-r--r-- | git/gitconfig | 2 | ||||
| -rw-r--r-- | muttrc | 8 |
4 files changed, 10 insertions, 3 deletions
@@ -60,9 +60,9 @@ export SDL_AUDIODRIVER=alsa export XDG_DATA_HOME=$HOME/.local/share export LESS="-R -M --shift 10" export EMAIL="reiner@reiner-h.de" +export GPG_TTY=$(tty) # use vim as pager (VimTip 167) export MANPAGER="/bin/sh -c \"col -b -x | view -u ~/.vim/pager.vim -c 'set ft=man nomod nolist' -\"" export PERLDOC_PAGER=$MANPAGER - diff --git a/debian/devscripts b/debian/devscripts index 2b051b7..c86d3b3 100644 --- a/debian/devscripts +++ b/debian/devscripts @@ -1,3 +1,4 @@ DEBSIGN_KEYID=5374AA4F +DEBSIGN_PROGRAM=gpg2 DEBUILD_LINTIAN_OPTS="-EvIL +pedantic --show-overrides --color=always" DEBUILD_DPKG_BUILDPACKAGE_OPTS="-jauto" diff --git a/git/gitconfig b/git/gitconfig index 5763835..b690c7f 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -22,3 +22,5 @@ [alias] ctags = !.git/hooks/ctags +[gpg] + program = gpg2 @@ -1,7 +1,7 @@ # Documentation available at http://www.mutt.org/doc/devel/manual.html#reference # imap settings -source /home/reiner/.mutt/imap_pass # import password from external file to prevent accidental pasting :) +source ~/.mutt/imap_pass # import password from external file to prevent accidental pasting :) set folder="imap://reiner@mail.reiner-h.de/INBOX" set imap_idle set imap_check_subscribed @@ -95,8 +95,12 @@ folder-hook . 'push <collapse-all>' # collapse threads # gpg settings -source /usr/share/doc/mutt/examples/gpg.rc +# - gpg.rc copied from /etc/Muttrc.d/ and replaced gpg with gpg2 +source ~/.mutt/gpg.rc set crypt_autosign +set crypt_replyencrypt +set crypt_opportunistic_encrypt +set crypt_replysignencrypted set crypt_verify_sig |
