From 2eadef7687b8159e93f3bbb4599211c7c52fda8a Mon Sep 17 00:00:00 2001 From: Ibrahim Muftee Date: Wed, 25 Mar 2026 17:35:38 -0500 Subject: feat(zsh): add local bin to path for mac --- dot_zshrc.tmpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dot_zshrc.tmpl b/dot_zshrc.tmpl index 672fc56..255f9ad 100644 --- a/dot_zshrc.tmpl +++ b/dot_zshrc.tmpl @@ -21,6 +21,11 @@ setopt autocd # Automatically cd into typed directory. stty stop undef # Disable ctrl-s to freeze terminal. setopt interactive_comments +{{ if eq .chezmoi.os "darwin" }} +# Add /usr/local/bin to $PATH (Macbook doesn't have this by default?) +export PATH="/usr/local/bin/:$PATH" +{{ end -}} + # Add ~/.local/bin to $PATH export PATH="$PATH:$HOME/.local/bin" -- cgit v1.2.3