From 51ba8e5a9e28c0f3d2f5ea67f4254f16281922f1 Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Mon, 18 Nov 2024 11:39:15 -0600 Subject: [PATCH] Add $GOPATH/bin to PATH --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 12e9184..83380e7 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -95,6 +95,9 @@ export PATH="${HOME}/.local/bin:${PATH}" # Add ~/bin to PATH export PATH="${HOME}/bin:${PATH}" +# Add ~/go/bin to PATH +export PATH="${HOME}/go/bin:${PATH}" + # Automatically remove duplicates from these arrays typeset -gU path cdpath manpath fpath