Mac下iTerm2 + Oh My Zsh配置个性化终端

Mac下iTerm2 + Oh My Zsh配置个性化终端

引用:

https://www.jianshu.com/p/ba08713c2b19
https://www.iterm2.com/index.html

  1. 效果

Mac下iTerm2 + Oh My Zsh配置个性化终端_第1张图片
WX20200527-160542.png
  1. 介绍

    1. iTerm2

      iTerm2是terminal的替代品,内置很多丰富的功能,比如窗口分割、热键、搜索、密码管理等,让你在使用中的体验更友好,效率更快。

      更多功能可以查看这里https://www.iterm2.com/features.html

    2. Oh My Zsh

      Oh My Zsh是一个zsh的管理配置工具,可以让你在zsh中轻松的配置各种插件,比如布局、高亮、自动填充等

      更多插件可以查看这里https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

  2. 下载安装

    官方地址 https://www.iterm2.com/

    1. 下载地址 https://www.iterm2.com/downloads.html 双击解压 运行iTerm程序,根据提示选择将文件拷贝到application中,或者 brew install iterm2

    2. 配置颜色字体等

      1. 颜色

        iTerm2 -> Perferences -> Profiles ->Colors -> Color Presets -> Solarized Dark

      2. 字体(主题插件安装完成之后再配置字体)

        iTerm2 -> Perferences -> Profiles -> Text -> Font -> MesloLGS NF

      3. 新窗口路径与上一个窗口路径一致

        iTerm2 -> Perferences -> Profiles -> General -> Working Directory -> Reuse previous session's directory

  3. 安装Oh My Zsh

    官方地址 https://github.com/ohmyzsh/ohmyzsh

    1. curl方式安装

      sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
      
  4. 安装powerlevel10k主题插件

    官方地址https://github.com/romkatv/powerlevel10k

    Oh My Zsh方式安装

    1. 下载文件到Oh My Zsh插件库

      git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
      
    2. 编辑~/.zshrc文件

      ZSH_THEME="powerlevel10k/powerlevel10k"
      
    3. 修改字体为MesloLGS NF

    4. 重启iTerm2

    5. 如果配置窗口没有提示,使用以下命令

      p10k configure
      
  5. 安装高亮显示插件

    官方地址 https://github.com/zsh-users/zsh-syntax-highlighting

    Oh My Zsh方式安装

    1. 下载文件到Oh My Zsh插件库

      git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
      
    2. 编辑~/.zshrc文件,plugins增加zsh-syntax-highlighting插件

       plugins=( [plugins...] zsh-syntax-highlighting)
      
  1. 安装自动填充建议插件

    官方地址 https://github.com/zsh-users/zsh-autosuggestions

    Oh My Zsh方式安装

    1. 下载文件到Oh My Zsh插件库

       git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
      
    2. 编辑~/.zshrc文件,plugins增加zsh-autosuggestions插件

       plugins=(zsh-autosuggestions)
      

你可能感兴趣的:(Mac下iTerm2 + Oh My Zsh配置个性化终端)