From c0e4a88d707f9aacf9eef82ae9f764060f57fbe1 Mon Sep 17 00:00:00 2001 From: dissimulo Date: Wed, 6 May 2026 02:24:33 -0700 Subject: [PATCH] Add ~/.local/bin to PATH from prezto-override zshrc The Claude Code installer drops the binary at ~/.local/bin/claude. Without this PATH entry, freshly-installed Claude Code is invisible to new shells until the user adds it manually. Other ~/.local/bin scripts in this dotfiles repo (tmux-ip, tmux-window-icon, twitterbot, etc.) benefit from the same. --- zsh/prezto-override/zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/prezto-override/zshrc b/zsh/prezto-override/zshrc index 80f27cb9..11bb2187 100644 --- a/zsh/prezto-override/zshrc +++ b/zsh/prezto-override/zshrc @@ -1,3 +1,4 @@ source $HOME/.zprezto/runcoms/zshrc for config_file ($HOME/.yadr/zsh/*.zsh) source $config_file +export PATH="$HOME/.local/bin:$PATH"