dotfiles/dot_config/fish/conf.d/20-gpg.fish

10 lines
160 B
Fish
Raw Normal View History

2024-04-14 18:41:15 -07:00
#!/usr/bin/env fish
if command -v gpgconf &>/dev/null
set -gx GPG_TTY (tty)
if status --is-interactive
gpgconf --launch gpg-agent
end
2024-04-14 18:41:15 -07:00
end