lazy/files/zsh/81-proxy.zsh
2023-11-30 15:00:25 +08:00

12 lines
311 B
Bash

# Golang
if [ -f "/usr/local/go/bin/go" ]; then
# export GO111MODULE=on
export GOPROXY=https://goproxy.cn,direct
fi
# Node.js, npm, nvm
if [ -d "$HOME/.nvm" ]; then
export NVM_NODEJS_ORG_MIRROR=https://npmmirror.com/mirrors/node
export NVM_IOJS_ORG_MIRROR=https://npmmirror.com/mirrors/iojs
fi