MacOS初始化

brew及相关软件

安装brew

安装方式 参考资料
原版 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
国内镜像 清华大学brew镜像站

常见brew软件

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
brew install sogouinput
brew install iterm2
brew install visual-studio-code
brew install jetbrains-toolbox
brew install dbeaver-community
brew install arc
brew install spoof-mac
brew install karabiner-elements
brew install keycastr
brew install utools
brew install switchhosts
brew install google-chrome
brew install microsoft-edge
brew install hugo
brew install go
brew install jenv
brew install flutter
brew install subversion
brew install clashx
  1. 使用karabiner-elements交换esc和scap lock键
  2. 使用clashx配置vpn
  3. 使用spoof-mac更改MAC地址

工具软件安装

软件 相关资源 配置
sdkman source "$HOME/.sdkman/bin/sdkman-init.sh"
jdk openjdk8 可选zip版本,结合jenv食用
neatdownloadmanager neatdownloadmanager
App Cleaner & Uninstaller
One Switch
Parallels Desktop
aliyundrive

App Store软件安装

软件
微信 QQ 企业微信 腾讯会议
iShot Pro Hidden Bar lastpass Magnet
网易云音乐 QQ音乐
WPS Numbers
百度网盘

其他mac配置

配置 操作
触控板轻安点击 打开【轻点来点按】
触控板拖移样式 【拖移样式】-》三指拖移

其他

zshrc

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
export HOMEBREW_INSTALL_FROM_API=1
export HOMEBREW_API_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles/api"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"

alias zshconfig="mate ~/.zshrc"
alias ohmyzsh="mate ~/.oh-my-zsh"
alias zshconfig="vi ~/.zshrc"
alias vimconfig="vi ~/.vimrc"
alias ll="ls -l"
alias vi="vim"

export PATH=$PATH:/Users/tangyujun/app

export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
0%