From 03707ebb915864cb90fcc2b0c0b8fa26eca0db1c Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sat, 22 Jan 2022 20:01:11 -0800 Subject: [PATCH] [zshrc] Add ~/go/bin to PATH --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 6470590..54e00c2 100755 --- a/zshrc +++ b/zshrc @@ -13,7 +13,7 @@ function is_interactive() { [ -t 1 ] } # 1. Environment Vars # =================== -custom_paths=(/sbin /usr/sbin /Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin /usr/local/bin /usr/local/sbin /opt/homebrew/bin /opt/homebrew/sbin $HOME/bin) +custom_paths=(/sbin /usr/sbin /Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin /usr/local/bin /usr/local/sbin /opt/homebrew/bin /opt/homebrew/sbin $HOME/go/bin $HOME/bin) for dir in $custom_paths; do if [[ -d "$dir" ]]; then path=($dir $path)