Skip to content

Instantly share code, notes, and snippets.

@withattribution
Created August 5, 2018 06:11
Show Gist options
  • Select an option

  • Save withattribution/3dcce1d0497df1f072e16d9150be2922 to your computer and use it in GitHub Desktop.

Select an option

Save withattribution/3dcce1d0497df1f072e16d9150be2922 to your computer and use it in GitHub Desktop.
//vscode
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.minimap.enabled" : false,
"telemetry.enableTelemetry" : false,
"window.zoomLevel" : 0,
"editor.rulers": [80],
"go.buildTags":"integration",
"terminal.integrated.shell.osx" : "zsh"
}
//.zshrc
plugins=(
git source <(kubectl completion zsh) docker
)
# ===GO
export GOPATH=$HOME/dev/go
export GOBIN=$GOPATH/bin
export GOROOT=`go env GOROOT`
# PATH
export PATH=$PATH:$GOPATH:$JAVA_HOME/bin
export CDPATH=.:$GOPATH/src/github.com:$GOPATH/src/bitbucket.org:$GOPATH/src/golang.org:$GOPATH/src
# JAVA_HOME
export JAVA_HOME=/Library/Java/Home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment