-
-
Save withattribution/3dcce1d0497df1f072e16d9150be2922 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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