From 01c1c1756e622eba7d18b50acf4bc005d25742a3 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 3 Aug 2022 00:44:16 -0500 Subject: [PATCH] feat: set gopath --- dots/.config/zsh/config/profile/profile/env.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dots/.config/zsh/config/profile/profile/env.zsh b/dots/.config/zsh/config/profile/profile/env.zsh index a3012bdf..b532eff5 100644 --- a/dots/.config/zsh/config/profile/profile/env.zsh +++ b/dots/.config/zsh/config/profile/profile/env.zsh @@ -88,7 +88,8 @@ export PATH="${PATH}:${CARGO_HOME}/bin" export PATH="${PATH}:${XDG_DATA_HOME}/dotnet" ### Go ### -export PATH="${PATH}:/usr/local/go/bin" +export GOPATH="${HOME}/.local/share/go" +export PATH="${PATH}:/usr/local/go/bin:${GOPATH}/bin" ### Direnv ### eval "$(direnv hook zsh)"