dotfiles/git/gpg.config.fish
punkfairie b183bcc9c0
Use GPG to sign git commits
I've automated as much as possible, and tucked the setup in it's own
script which the user is prompted to run if no keys exist.
2024-02-04 20:28:59 -08:00

6 lines
118 B
Fish

#!/usr/bin/env fish
if [ -e "~/.gnupg/gpg-agent.conf" ]
set -gx GPG_TTY (tty)
gpgconf --launch gpg-agent
end