mac自定義終端主題 iTerm2 + oh-my-zsh + solarized

mac自定義終端主題

  1. iTerm2
  2. oh-my-zsh
  3. powerline
  4. solarized

安裝iTerm2

iTerm2比mac自帶終端更強大的終端軟件,直接在官網下載:http://iterm2.com/git

配置

  1. 將iTem2設置爲默認終端:(頂部菜單欄)iTerm2 -> Make iTerm2 Default Term

圖片描述

  1. 設置熱鍵爲cmd+.

圖片描述

安裝主題 solarized

官網:https://ethanschoonover.com/s...github

下載:http://ethanschoonover.com/so...vim

解壓後進入iterm2-colors-solarized/目錄下,有兩個主題文件,在iTerm2中導入便可bash

圖片描述

安裝oh-my-zsh

github:https://github.com/robbyrussell/oh-my-zshcurl

可使用如下任意一種方式安裝:字體

# curl
sh -c "$(curl -fsSL https://raw.github.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 -)"

修改主題

vim ~/.zshrc
# 找到 ZSH_THEME="robbyrussell" 這一行
# 修改成 ZSH_THEME="agnoster" (也可使用ys)
# 保存退出
source ~/.zshrc

注意:這時候有可能會出現亂碼,安裝好PowerLine字體後解決。
圖片描述url

安裝PowerLine字體

cd ~/Downloads
git clone https://github.com/powerline/fonts.git
cd fonts
bash install.sh        # 安裝字體

修改iTerm2的默認字體
圖片描述spa

關於 zsh: command not found: xxx

若是以前是用~/.bash_profile配置環境變量的可能會出現這個問題,執行如下操做能夠解決:插件

vim ~/.zshrc
# 找到『# User configuration』這行
# 在下方添加 『source ~/.bash_profile』
# 保存退出
source ~/.zshrc

重啓命令行窗口後解決命令行

圖片描述

語法高亮插件

brew install zsh-syntax-highlighting
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source ~/.zshrc
相關文章
相關標籤/搜索