Created
April 15, 2022 05:43
-
-
Save devinus/93c3f4605745b1c412a64844b181ea88 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
#!/usr/bin/zsh | |
GOPATH="$(go env GOPATH)" | |
PATH="$GOPATH/bin:/usr/lib/ccache/bin:$PATH" | |
LESS="-RF" | |
EDITOR=vim | |
DOCKER_BUILDKIT=1 | |
COMPOSE_DOCKER_CLI_BUILD=1 | |
VAGRANT_EXPERIMENTAL=1 | |
DOTNET_CLI_TELEMETRY_OPTOUT=1 | |
CCACHE_MAXSIZE=10G | |
CCACHE_NOCOMPRESS=true | |
CCACHE_FILECLONE=true | |
CCACHE_INODECACHE=true | |
CCACHE_SLOPPINESS=locale,modules,pch_defines,time_macros | |
RUSTC_WRAPPER=sccache | |
EM_COMPILER_WRAPPER=ccache | |
RIPGREP_CONFIG_PATH="$HOME/.ripgreprc" | |
export \ | |
GOPATH \ | |
PATH \ | |
EDITOR \ | |
LESS \ | |
DOCKER_BUILDKIT \ | |
COMPOSE_DOCKER_CLI_BUILD \ | |
VAGRANT_EXPERIMENTAL \ | |
CCACHE_MAXSIZE \ | |
CCACHE_NOCOMPRESS \ | |
CCACHE_FILECLONE \ | |
CCACHE_INODECACHE \ | |
CCACHE_SLOPPINESS \ | |
RUSTC_WRAPPER \ | |
EM_COMPILER_WRAPPER \ | |
RIPGREP_CONFIG_PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment