Mac 下 美化 iterm2 使用 oh-my-zsh

weixin_34087301發表於2018-01-23
337803-22ea8f7b1d55b800.jpeg

iterm2預設沒有git分支 沒有命令自動提示 通過下邊的安裝來美化iterm2

  1. 開啟iterm2終端 首先 安裝 zsh
    Try zsh --version before installing it from Homebrew
    執行 zsh --version 如果輸出了版本號 說明已經安裝過了(系統自帶)
    如果沒有安裝執行下邊命令

     brew install zsh zsh-completions
    
  2. 安裝 oh-my-zsh
    必須先安裝zsh 才能安裝 oh-my-zsh
    安裝oh-my-zsh之前 要求安裝好curl或者wget以及git
    這裡都已安裝過
    通過curl 或者 wget 安裝 oh-my-zsh
    開啟終端執行以下任一命令
    // 通過curl 安裝

     sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    

    // 通過wget 安裝

     sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
    
  3. 給zsh配置主題
    sudo vim ~/.zshrc
    這裡可以到 https://github.com/robbyrussell/oh-my-zsh/wiki/Themes檢視支援的主題名字
    修改 ZSH_THEME的值 這裡改為cloud主題;
    ZSH_THEME="cloud"
    儲存退出 重啟終端 即可看到新的主題

  4. 新增命令列自動提示

    執行以下命令克隆zsh-autosuggestions到~/.zsh/zsh-autosuggestions

     sudo git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
    

    將以下內容新增到您的.zshrc

     source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
    

    開始一個新的終端會話

  5. 配置iterm2主題為 Dracula 可以參考 Dracula

    下載主題檔案

     git clone https://github.com/dracula/iterm.git
    

    啟用主題

     1、iTerm2 > Preferences > Profiles > Colors Tab
     2、Open the Color Presets... drop-down in the bottom right corner
     3、Select Import... from the list
     4、Select the Dracula.itermcolors file
     5、Select the Dracula from Color Presets...
    
337803-e574ff4058f0830a.jpeg

相關文章