diff options
| author | seth <[email protected]> | 2022-08-31 08:41:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-31 12:31:43 -0400 |
| commit | 59b844443f5a5c867a98f8b89dce5b9c6ce3783f (patch) | |
| tree | 8df50f0cfdb0f55ae0d323f471b67372847e6321 /.config/zsh/.zshenv | |
| parent | bc8c2e6747757306a1b2aba531f7577f51d28650 (diff) | |
yep
Diffstat (limited to '.config/zsh/.zshenv')
| -rw-r--r-- | .config/zsh/.zshenv | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.config/zsh/.zshenv b/.config/zsh/.zshenv index 0bab150..fefc8c3 100644 --- a/.config/zsh/.zshenv +++ b/.config/zsh/.zshenv @@ -2,13 +2,12 @@ # getchoo's zshenv # +source "${HOME}/.config/shell/profile" # add user's bin directory to path typeset -U path PATH -if [[ -d "$HOME/.local/bin" ]]; then - path=("$HOME/.local/bin" "$path[@]") +if [[ -d "${HOME}/.local/bin" ]]; then + path=("${HOME}/.local/bin" "$path[@]") export PATH fi - -source "$HOME/.config/shell/profile" |
