cfg/aa-00-00/zsh/.zprofile

20 lines
316 B
Plaintext
Raw Permalink Normal View History

2023-05-16 20:54:38 +01:00
# Inferencium
# ZSH - Profile
# Copyright 2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause-Clear
# Version: 1.1.1.4
2023-05-16 20:54:38 +01:00
# Start ssh-agent on login
2023-05-16 20:54:38 +01:00
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval $(ssh-agent -s)
fi
# Environmental variables
## User
if [[ -f $HOME/.zshenv-user ]]; then
. $HOME/.zshenv-user
fi