Mac电脑配置相关及软件工具安装推荐
- iTerm2(https://www.iterm2.com/) 终端工具
- Alfred(http://xclient.info/s/alfred.html) 快速启动器
- WebStorm、VSCode、Vim都行
- Moom(http://xclient.info/s/moom.html) 窗口大小管理工具
- 微信在Mac上免手机扫码登录,支持Alfred: https://github.com/Sunnyyoung/WeChatTweak-macOS
- 建议在系统设置中,把 “触控板” 的所有选项都打开
- 系统设置 -> 辅助功能 -> 鼠标与触控板 -> 触控板选项 -> 启用拖移(三指拖移)打开
- 系统设置 -> 键盘 -> 光标重复速率调到最大,延迟调低
命令行工具推荐
- zsh + oh-my-zsh或者fish作为shell
- fzf:https://github.com/junegunn/fzf 。强大的模糊匹配自动补全,可替代命令历史查找、路径补全
- z:https://github.com/rupa/z 。快速跳转某个历史目录(比如 $> z xb,会跳转到 dby-electron-client-xb。如果之前访问过的话)
- ag:https://github.com/ggreer/the_silver_searcher 。快速在当前代码目录中查到某个代码段
- exa:https://github.com/ogham/exa 。用rust写的,一个类似 ls 的工具。推荐自行配置alias。可以查看git修改。
alias exa 'exa --time-style iso --git' alias l exa alias la 'exa -ahl' alias ll 'exa -lh' alias lstr 'exa -ahl -s modified' alias tree 'exa --tree --git-ignore' alias treeall 'exa --tree'
- ccat:https://github.com/jingweno/ccat 。彩色的 cat