Skip to content

环境搭建

oh my zsh

bash
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

插件

自动提示补全

bash
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

语法高亮

bash
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

主题

bash
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

命令行工具

Git / GitHub

bash
brew install git
brew install gh

Node.js

bash
brew install fnm

紧接着在 ~/.zshrc 中添加以下内容:

bash
eval "$(fnm env --use-on-cd --shell zsh)"

IDE

bash
brew install --cask visual-studio-code
brew install --cask cursor
brew install --cask antigravity
brew install --cask android-studio

以下软件建议官方下载:

开发辅助

bash
brew install --cask apifox
brew install --cask docker
brew install --cask termius

基于 MIT 许可发布