From e9005dff174602133cab1570a45125e9f4a4ad92 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Mon, 23 Sep 2024 08:32:39 +0200 Subject: [PATCH] chore(zsh): lower homebrew path priority --- zshrc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/zshrc b/zshrc index f3341e3..be23c71 100644 --- a/zshrc +++ b/zshrc @@ -159,13 +159,6 @@ export KEYTIMEOUT=2 [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh # set PATHs (highest priority last) -export PATH=$HOME/go/bin:$PATH -export PATH=$HOME/local/sbin:$PATH -export PATH=$HOME/local/bin:$PATH -export PATH=$HOME/bin:$PATH -export PATH=$HOME/.local/bin:$PATH -export PATH=$HOME/script:$PATH - if [ "$(uname -s)" = "Darwin" ]; then if [ -d /opt/homebrew/bin ]; then export PATH=/opt/homebrew/bin:$PATH @@ -176,6 +169,13 @@ if [ "$(uname -s)" = "Darwin" ]; then export PATH="/Applications/Postgres.app/Contents/Versions/16/bin:$PATH" fi +export PATH=$HOME/go/bin:$PATH +export PATH=$HOME/local/sbin:$PATH +export PATH=$HOME/local/bin:$PATH +export PATH=$HOME/bin:$PATH +export PATH=$HOME/.local/bin:$PATH +export PATH=$HOME/script:$PATH + export VIMPLUGIN="$HOME/.vim/pack/git-plugins" # source local zshrc, if it exists (not: not in git)