按理说mac可以一键迁移,但是被格盘了,还是把装机内容备一个清单,之后可以快速配置。
1. 搜狗输入法(官网下载)
2. iterm2、oh my zsh (命令行安装 sh -c "$(wget -qO- https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)")
3. vscode
plugins: eslint、stylelint、comate、gitLens...
4. charlse
5. git
6. snipaste(截图工具)
7. switchhost(修改 host 映射工具)
8. chrome(官网下载)
9. nodejs(官网下载)
10. n (sudo npm install n -g)
11. 印象笔记
12. 配置ssh公钥,下代码
13. xcode(模拟器调试 appstore下载)
14. 配置git信息 (git alias)
[alias]
d = diff co = checkout br = branch last = log -1 HEAD cane = commit --amend --no-edit lo = log --oneline -n 10 pr = pull --rebase st = status ci = commit
vi ~/.gitconfig
15. 配置ll
vim ~/.bash_profile
alias ll='ls -alF'
source ~/.bash_profile
16. cursor
17. git clone报错
是因为OpenSSH 8.8以后的版本禁止使用 SHA-1 哈西算法的 RSA 签名
https://www.openssh.com/txt/release-8.8
解决办法
1) 可以选择降级open ssh 版本
2) mac版可以添加以下内容 vim ~/.ssh/config
```
Host icode.baidu.com
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa
```
18. 安装homebrew
/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"
19. 安装wget
brew install wget
20. office办公软件
21. postman
22. yarn(brew install yarn)
23. 配置host(sudo vim /etc/hosts)
22. 多路复用插件
23. 百度开发者工具、微信开发者工具
24. 解压工具 brew install carlocab/personal/unrar
进到需要解压的文件夹:cd 'target_path'
解压.rar文件到当前文件夹:unrar e 'file_name'
解压.rar文件到指定路径:unrar x 'file_name' 'target_path'
解压带密码的.rar文件到当前文件夹:unrar e -p'123' 'file_name'
解压带密码的.rar文件到指定文件夹:unrar x -p'123' 'file_name' 'target_path'