Created
July 22, 2022 09:40
-
-
Save devinus/927986b18dea366d56ebac7c942da284 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/env zsh | |
# shellcheck disable=1091,3046 | |
LESS="-RF" | |
EDITOR=nvim | |
VISUAL="${EDITOR}" | |
ZSH_EVALCACHE_DIR="${XDG_CACHE_HOME:-${HOME}/.cache}/zsh/evalcache" | |
DOCKER_BUILDKIT=1 | |
COMPOSE_DOCKER_CLI_BUILD=1 | |
VAGRANT_EXPERIMENTAL=1 | |
DOTNET_CLI_TELEMETRY_OPTOUT=1 | |
CCACHE_MAXSIZE=10G | |
CCACHE_ABSSTDERR=1 | |
CCACHE_FILECLONE=1 | |
CCACHE_NOCOMPRESS=1 | |
CCACHE_INODECACHE=1 | |
CCACHE_PCH_EXTSUM=1 | |
CCACHE_SLOPPINESS=locale,modules,pch_defines,time_macros | |
RUSTC_WRAPPER=sccache | |
EM_COMPILER_WRAPPER=ccache | |
GCC_COLORS="error=01;31:warning=01;35:note=01;36:range1=32:range2=34:\ | |
locus=01:\quote=01:path=01;36:fixit-insert=32:fixit-delete=31:\ | |
diff-filename=01:diff-hunk=32:diff-delete=31:diff-insert=32:type-diff=01;32" | |
GCC_URLS=1 | |
ASDF_DIR="${HOME}/.asdf" | |
ASDF_DIRENV_BIN=/usr/bin/direnv | |
RIPGREP_CONFIG_PATH="${HOME}/.ripgreprc" | |
GOPATH="${HOME}/go" | |
PATH="${HOME}/bin:${GOPATH}/bin:/usr/lib/ccache/bin:${PATH}" | |
export \ | |
LESS \ | |
EDITOR \ | |
VISUAL \ | |
ZSH_EVALCACHE_DIR \ | |
DOCKER_BUILDKIT \ | |
COMPOSE_DOCKER_CLI_BUILD \ | |
VAGRANT_EXPERIMENTAL \ | |
DOTNET_CLI_TELEMETRY_OPTOUT \ | |
CCACHE_MAXSIZE \ | |
CCACHE_ABSSTDERR \ | |
CCACHE_FILECLONE \ | |
CCACHE_NOCOMPRESS \ | |
CCACHE_INODECACHE \ | |
CCACHE_PCH_EXTSUM \ | |
CCACHE_SLOPPINESS \ | |
RUSTC_WRAPPER \ | |
EM_COMPILER_WRAPPER \ | |
GCC_COLORS \ | |
GCC_URLS \ | |
ASDF_DIR \ | |
ASDF_DIRENV_BIN \ | |
RIPGREP_CONFIG_PATH \ | |
GOPATH \ | |
PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment