From 30d1e8c364866815172d4d069ca43c27ccc8df1e Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Mon, 27 Jul 2026 10:50:04 +0200 Subject: [PATCH] [ZSH] Deduplicate server PATH Port the platform-neutral PATH cleanup from 7ccb268 without bringing macOS-only Go, Run:AI, LM Studio, or Homebrew configuration onto the server branch. --- zsh/.zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 07e5d27..d6d8bc1 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -227,3 +227,7 @@ export TIME_STYLE="long-iso" [[ -f ~/.zsh/.virtual_env_config.zsh ]] && source ~/.zsh/.virtual_env_config.zsh [[ -f ~/.zsh/.local_config ]] && source ~/.zsh/.local_config [[ -f ~/.zsh/.os_config.zsh ]] && source ~/.zsh/.os_config.zsh + +# Remove duplicate entries added by inherited and machine-specific PATH config +# while preserving the first occurrence and therefore command precedence. +typeset -U path PATH