From f69d921bcf3c648e505a8b060c8cef41e94840b4 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 15 Apr 2022 14:11:27 +0200 Subject: [PATCH] Prioritise ~/.local/bin --- .config/zsh/.zprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index a7fabf7..472afd2 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -3,7 +3,7 @@ function() # Keep local variables in here. ############################## Paths ########################################### -export PATH="${HOME}/bin:${HOME}/.local/bin:${PATH}" +export PATH="${HOME}/.local/bin:${PATH}:${HOME}/bin" export HISTFILE="${ZDOTDIR}/.zsh_history" export ZSH_CACHE_DIR="${XDG_CACHE_HOME:-${HOME}/.cache}/zsh" mkdir -p "${ZSH_CACHE_DIR}"