-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.profile
More file actions
31 lines (25 loc) · 715 Bytes
/
.profile
File metadata and controls
31 lines (25 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# shellcheck disable=SC2148
# shellcheck disable=SC1091
# Fix to prevent LMStudio polluting my dotfiles at every start
# https://github.com/lmstudio-ai/lmstudio-bug-tracker/issues/656#issuecomment-2938234807
# /Users/pco/.lmstudio/bin
# source env exports
if [ -f "${HOME}/.env" ] && [ -z "$ENV_LOADED" ]; then
source "${HOME}/.env"
fi
# source aliases
if [ -f "${HOME}/.aliases" ]; then
source "${HOME}/.aliases"
fi
# source functions
if [ -f "${HOME}/.functions" ]; then
source "${HOME}/.functions"
fi
# source secrets
if [ -f "${HOME}/.secrets" ]; then
source "${HOME}/.secrets"
fi
# source local configurations
if [ -f "${HOME}/.local_config" ]; then
source "${HOME}/.local_config"
fi