Skip to content

Instantly share code, notes, and snippets.

View ricardosilva86's full-sized avatar
🎯
Focusing on Cloud, K8s and Terraform.

Ricardo Silva ricardosilva86

🎯
Focusing on Cloud, K8s and Terraform.
View GitHub Profile
@ricardosilva86
ricardosilva86 / .bashrc
Created October 26, 2021 16:29 — forked from vsouza/.bashrc
Golang setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell, fish or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin