15 lines
247 B
Fish
15 lines
247 B
Fish
# Starship
|
|
if command -q starship
|
|
starship init fish | source
|
|
end
|
|
|
|
# Zoxide
|
|
if command -q zoxide
|
|
zoxide init --cmd cd fish | source
|
|
end
|
|
|
|
# GPG
|
|
set -gx GPG_TTY (tty)
|
|
set -gx SSH_AUTH_SOCK ~/.gnupg/S.gpg-agent.ssh
|
|
gpgconf --launch gpg-agent
|