记录 Mac 相关的东西

  1. App 推荐
  2. 使用技巧

App、Cli

更好的终端命令

  1. ls => exa (opens in a new tab)
  2. cat => bat (opens in a new tab)
  3. cd => zoxide (opens in a new tab): 更智能的 cd
  4. ctrl-r => mclfy (opens in a new tab): 更智能的历史命令
  5. find => fd (opens in a new tab): 简单、快速的 find 替代品

终端增强

  1. oh-my-zsh (opens in a new tab): 更好用的 zsh
  2. starship (opens in a new tab): 更好看的命令行提示符
  3. tmux: 终端复用

zsh 增强

  1. zsh-autosuggestions (opens in a new tab): 命令自动补全
  2. zsh-syntax-highlighting (opens in a new tab): 命令语法高亮

git 增强

  1. zsh git 插件 (opens in a new tab):预设了一系列好用的 alias

Mac 增强

  1. Raycast (opens in a new tab): 更好用的 Spotlight,便捷的剪切板管理。同时支持 React 开发插件。
  2. yabai (opens in a new tab): mac 窗口管理
  3. quick look (opens in a new tab): 为开发人员提供的快速查看插件列表

其他

  1. yadm (opens in a new tab): 更好用的 dotfiles 管理工具,用于多电脑同步配置文件。

Homebrew 同步

  1. 导出:
brew bundle dump --describe --force --file="~/Downloads/Brewfile"
 
  1. 导入:
brew bundle --file="~/Downloads/Brewfile"

资料

  1. awesome-macos-command-line (opens in a new tab): Mac 命令行工具集合,开发脚本可以参考。