记录 Mac 相关的东西
App、Cli
更好的终端命令
- ls => exa (opens in a new tab)
- cat => bat (opens in a new tab)
- cd => zoxide (opens in a new tab): 更智能的 cd
- ctrl-r => mclfy (opens in a new tab): 更智能的历史命令
- find => fd (opens in a new tab): 简单、快速的 find 替代品
终端增强
- oh-my-zsh (opens in a new tab): 更好用的 zsh
- starship (opens in a new tab): 更好看的命令行提示符
- tmux: 终端复用
zsh 增强
- zsh-autosuggestions (opens in a new tab): 命令自动补全
- zsh-syntax-highlighting (opens in a new tab): 命令语法高亮
git 增强
- zsh git 插件 (opens in a new tab):预设了一系列好用的 alias
Mac 增强
- Raycast (opens in a new tab): 更好用的 Spotlight,便捷的剪切板管理。同时支持 React 开发插件。
- yabai (opens in a new tab): mac 窗口管理
- quick look (opens in a new tab): 为开发人员提供的快速查看插件列表
其他
- yadm (opens in a new tab): 更好用的 dotfiles 管理工具,用于多电脑同步配置文件。
Homebrew 同步
- 导出:
brew bundle dump --describe --force --file="~/Downloads/Brewfile"
- 导入:
brew bundle --file="~/Downloads/Brewfile"
资料
- awesome-macos-command-line (opens in a new tab): Mac 命令行工具集合,开发脚本可以参考。