Homebrew

brew tap homebrew/cask-fonts
brew tap homebrew/cask-versions
brew tap buo/cask-upgrade
brew tap mongodb/brew
brew tap homebrew/autoupdate

# https://github.com/DomT4/homebrew-autoupdate,每 12 小时或启动系统时自动更新
brew autoupdate start 43200 --upgrade --cleanup --immediate --sudo

brew install git git-lfs git-flow

# 不自动转换 CRLF
git config --global core.autocrlf false
# 显示原始文件名
git config --global core.quotepath off
# 区分大小写
git config --global core.ignorecase false
git config --global init.defaultBranch main
# 自动移除不存在的远端分支
git config --global remote.origin.prune true
# 注意不要照抄
git config --global user.name {username}
git config --global user.email {email}
git config --global credential.github.com.provider {username}

# 访达插件,预览 Markdown
brew install qlmarkdown

# API 客户端
brew install --cask apifox
brew install btop
brew install dbeaver-community
# 管理 Node.js 版本
brew install fnm
brew install font-jetbrains-mono
brew install --cask font-maple-mono-nf-cn
# 媒体播放器
brew install iina
# 录屏和 Gif
brew install kap
# 增强鼠标功能
brew install mac-mouse-fix
brew install maczip
# 支付宝小程序开发者工具
brew install mini-program-studio
 # 网易云音乐
brew install neteasemusic
# 图床
brew install picgo
# 窗口管理工具
brew install --cask rectangle
# 截图和贴图
brew install snipaste
# Git 客户端
brew install sourcetree
brew install switchhosts
# 像 man 命令一样在终端查看命令的说明和使用例子,可以添加别名 alias iman='tldr'
brew install tldr
# 微信开发者工具
brew install wechatwebdevtools

brew tap mac-cleanup/mac-cleanup-py
# mac-cleanup [-c 设置 | -n 运行]
brew install mac-cleanup-py

# PHP
brew install php
brew install composer

# Go
brew install go

# 添加以下内容到 ~/.zshrc
export PATH="/Users/wangze/go/bin:$PATH"
export GO111MODULE=on
export GOPROXY=https://goproxy.cn

# Rust
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
rustc -V && cargo -V

# vi ~/.cargo/config.toml
[source.crates-io]
replace-with = 'ustc'

[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"

# Java
brew install maven
brew install jenv

# 添加以下内容到 ~/.zshrc
export PATH="$HOME/.jenv/bin:$PATH"
eval "$(jenv init -)"

jenv add xxx # 可以执行 /usr/libexec/java_home 查看 xxx,一般在 /Library/Java/JavaVirtualMachines/zulu-18.jdk/Contents/Home

App Store

软件

系统设置

打开

关闭

DNS

iCloud

# crontab -e 定时 kill iCloud 进程,iCloud 会自动重启,确保 iCloud 同步正常
*/50 * * * * killall bird && killall cloudd

Chrome

访问一次 google.com/ncr,避免 Google 自动重定向

F12 进入 DevTools,Setting > Experiments > Redesign of the filter bar in the Network Panel,关闭,效果:

Image

Github

加速:https://github.com/521xueweihan/GitHub520

解决 Connection Closed By x.x.x.x Port 22

# ~/.ssh/config
Host github.com
    HostName ssh.github.com
    User {username}
    Port 443

Docker

Settings - Docker Engine

{
    "builder": {
        "gc": {
            "defaultKeepStorage": "10GB",
            "enabled": true
        }
    },
    "experimental": false,
    "log-driver": "json-file",
    "log-opts": {
        "max-size": "10m",
        "max-file": "3"
    }
}
转载文章请注明出处。