All in one file.

This commit is contained in:
kyb
2018-08-03 08:05:51 +03:00
parent 1118ad4544
commit a192f08f10

View File

@@ -0,0 +1,9 @@
function fish_ssh_agent --description "Start ssh-agent if not started yet, or uses already started ssh-agent."
if test -z "$SSH_ENV"
set -xg SSH_ENV $HOME/.ssh/environment
end
if not __ssh_agent_is_started
__ssh_agent_start
end
end