mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 03:04:06 +00:00
* feat: switch to biome, apply formatting, shellcheck * chore: apply cr comments * chore: few config tweaks, shellcheck hook now py-based * chore: lint fixes and pr comments * chore(lint): megalinter, and other fixes Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
6 lines
162 B
Fish
6 lines
162 B
Fish
function __ssh_agent_start -d "start a new ssh agent"
|
|
ssh-agent -c | sed 's/^echo/#echo/' >$SSH_ENV
|
|
chmod 600 $SSH_ENV
|
|
source $SSH_ENV >/dev/null
|
|
end
|