From 337ef1e54c6aaafdfb878a3fee7af2c31e7c2bf2 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Mon, 18 Aug 2025 22:16:50 +0200 Subject: [PATCH] Fix PATH export for ~/.local/bin - Put ~/.local/bin at start of PATH - Use proper quoting format expected by Claude installer --- dotfiles/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index 87061e8..50ae685 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -127,7 +127,7 @@ alias ska="tmux kill-session -a" ##### -export PATH=$PATH:$HOME/.local/bin +export PATH="$HOME/.local/bin:$PATH" # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh