From 2c36af66156331c803a4080202a9d7921eb511a9 Mon Sep 17 00:00:00 2001 From: bretello Date: Sun, 18 Dec 2022 13:36:07 +0100 Subject: [PATCH] zsh: set up PATH early --- brethil_dotfile.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/brethil_dotfile.sh b/brethil_dotfile.sh index 1fd8379..ddf0083 100755 --- a/brethil_dotfile.sh +++ b/brethil_dotfile.sh @@ -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