# `$HOME/bin/start-agent` SSH_ENV="$HOME/.ssh/agent-environment" function start_agent { echo "Initialising new SSH agent..." /usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}" echo succeeded chmod 600 "${SSH_ENV}" . "${SSH_ENV}" > /dev/null /usr/bin/ssh-add; } # Source SSH settings, if applicable if [ -f "${SSH_ENV}" ]; then . "${SSH_ENV}" > /dev/null #ps ${SSH_AGENT_PID} doesn't work under cywgin ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || { start_agent; } else start_agent; fi export HISTORY_SUBSTRING_SEARCH_PREFIXED=1 export FLUTTER_ROOT="$HOME/apps/flutter" export GOPATH="$HOME/go" export GOROOT="$HOME/apps/go" export NODE_ROOT="$HOME/apps/node" export PATH="$GOPATH/bin:$GOROOT/bin:$NODE_ROOT/bin:$FLUTTER_ROOT/bin:$PATH" if [ -f "$HOME/.cargo/env" ]; then . "$HOME/.cargo/env" fi if [ -d "$HOME/bin" ]; then export PATH="$HOME/bin:$PATH" fi # The next line updates PATH for the Google Cloud SDK. if [ -f '/Users/jay/apps/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/jay/apps/google-cloud-sdk/path.zsh.inc'; fi # The next line enables shell command completion for gcloud. if [ -f '/Users/jay/apps/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/jay/apps/google-cloud-sdk/completion.zsh.inc'; fi