zsh: set up PATH early

fix-ci
bretello 2022-12-18 13:36:07 +01:00
parent 937555cd8d
commit 2c36af6615
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 2 additions and 3 deletions

View File

@ -7,6 +7,8 @@ export ZSH_THEME="brethil"
export DISABLE_UNTRACKED_FILES_DIRTY=true
export VIRTUAL_ENV_DISABLE_PROMPT=true
export PATH=$PATH:$HOME/bin
# Source all zsh plugins
source <(antibody init)
export ANTIBODY="$(antibody home)"
@ -121,9 +123,6 @@ test -f "${functions_file}" && source "${functions_file}"
test -f "${aliases_file}" && source "${aliases_file}"
test -f "${ssh_file}" && source "${ssh_file}"
### SETUP PATHS ####
export PATH=$PATH:$HOME/bin
autoload -U compinit && compinit
autoload -U bashcompinit && bashcompinit