Merge profile and ZSH packages

This commit is contained in:
Fabio Scotto di Santolo
2025-07-18 14:33:59 +02:00
parent a92e04578d
commit 122528e763
14 changed files with 0 additions and 0 deletions

12
zsh/.profile.d/go.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
case $(uname -s) in
"Linux")
export GOPATH="$HOME/.local/share/Go";;
"Darwin")
export GOPATH="$HOME/Library/Go";;
*)
echo "Operating System unknown";;
esac
export GOBIN=$GOPATH/bin