cfg/desktop/zsh/.zprofile

20 lines
308 B
Plaintext
Raw Normal View History

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