From 4f5f8904c1e02b64e971a91da7df87c364d43e90 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 17 Mar 2025 22:10:16 -0500 Subject: [PATCH] Fixes #19: Use HOME instead of hardcoded user account path. --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index a32c1df..2efa6c9 100644 --- a/.zshrc +++ b/.zshrc @@ -19,7 +19,7 @@ export PS1=$'\n'"%F{green} %*%F %3~ %F{white}"$'\n'"$ " plugins=(git brew history kubectl history-substring-search) # Custom $PATH with extra locations. -export PATH=/opt/homebrew/bin:/Users/jgeerling/Library/Python/3.12/bin:/usr/local/bin:/usr/local/sbin:$HOME/bin:$HOME/.local/bin:$HOME/go/bin:/usr/local/git/bin:$HOME/.composer/vendor/bin:$PATH +export PATH=/opt/homebrew/bin:$HOME/Library/Python/3.12/bin:/usr/local/bin:/usr/local/sbin:$HOME/bin:$HOME/.local/bin:$HOME/go/bin:/usr/local/git/bin:$HOME/.composer/vendor/bin:$PATH # Bash-style time output. export TIMEFMT=$'\nreal\t%*E\nuser\t%*U\nsys\t%*S'