Mac 笑歌配置流程

Last renew: August 3, 2022 pm

Mac 笑歌配置流程

最近拿到了公司给配的新MBP14 (M1芯片),准备记录所有装机后的环境构筑。

  1. 安装homebrew

地址如下

  1. 为.zshrc文件配置brew路径(否则会出现)zsh: command not found: brew

    1
    2
    3
    4
    5
    6
    vi ~/.zshrc
    i #切换编辑模式
    export PATH=/opt/homebrew/bin:$PATH
    esc #退出编辑模式
    :wq #保存
    source ~/.zshrc #更新文件
  2. 安装iterm2

  3. 切换bash到zsh

1
chsh -s /bin/zsh
  1. 安装oh my zsh

地址如下

  1. zsh语法高亮

安装zsh-syntax-highlighting

1
2
3
4
5
6
7
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
#在.zshrc中修改内容
plugins=(
git
zsh-syntax-highlighting
)
zsh ~/.zshrc #保存结果
  1. Git 与github的链接,以及无密码设置

链接