AndroidStudio终端显示-iTerm2+zsh

  1. 安裝 iTerm2
  2. 修改 iTerm2 的 color scheme
  3. 安裝 powerline font
  4. 安裝 zsh
  5. 安裝 oh-my-zsh
  6. 安裝 zsh theme: powerlevel9k
  7. 设置 powerlevel9k

安装iTerm2

brew search iterm

在搜索结果中安装

brew cask install iterm2

安裝好以后 打开
Preferences > Profiles > Terminal > Report Terminal Type

改为 xterm-256color,才能在 terminal 中看得到漂亮的顏色。

修改iTerm2的color scheme

打开:Preferences > Profiles > Colors > Color Presets...

里面很一些内置的配色,也可以到iTerm2 Color Schemes中把这个git repo下载到电脑中,然后import到iTerm2中。

安装powerline font

因为一些theme会用到特殊的icon,所以必须选择支持这些特殊icon的font。这些字体统称为powerline font。

安装powerline字体指令:

git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh
rm -rf ../fonts

先执行,才能用 homebrew 安装字体。

brew Tap homebrew/cask-fonts

安裝

brew cask install font-sourcecodepro-nerd-font

brew 上面也有很多字型可以挑,可是使用:

brew search nerdfont
brew cask install font-hack-nerd-font

装完后,修改 iTerm2 字体设定
Preferences > Profiles > Text > Change Font 选择Sauce Code Powerline字体。

安装zsh:

检查当前默认的shell:

echo $0

查看机器上支持哪些shell:

cat /etc/shells

切换到zsh:

chsh -s /bin/zsh

如果没有安装zsh,可以执行如下操作:

brew install zsh
sudo sh -c "echo $(which zsh) >> /etc/shells" 
chsh -s $(which zsh)

iTerm2设定路径:Preferences > Profiles > General > Command,改为

/bin/zsh

安装oh-my-zsh:

安裝指令:

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

安裝 zsh theme powerlevel9k

安装好oh-my-zsh以后,默认theme为robbyrussell,多了一些git资讯,颜色也比原生bash好看多了。

不過 oh-my-zsh 內建很多 theme,在它的 github wiki 上有很多截图可以參考。

powerlevel9k 不只是像上面的示例显示的一些基本资讯,还可以做到很屌的事情,比如 WiFi信号强度、电池电力、CPU loading、system free memory 等等在 command line

powerlevel9k 安裝方式:

1.下载

powerlevel9k 不是 oh-my-zsh 內建的 theme ,必须另外下载:

git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k

2. 设置主题

编辑你的 ~/.zshrc ,把 ZSH_THEME 设置为 powerlevel9k,并设置哪些东西可以显示在 command line 上:

#字体设定 (注意,字体设定必须放在主题之前)
POWERLEVEL9K_MODE='nerdfont-complete'
#主题设定
ZSH_THEME="powerlevel9k/powerlevel9k"
# command line 左边显示的内容
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon context dir vcs virtualenv)
# command line 右边显示的内容
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(time)

最后执行

exec $SHELL # 或 

vcs 为 version control system 的缩写

还有非常非常多东西可以用,请参考这个列表自己玩玩看https://github.com/bhilburn/powerlevel9k#available-prompt-segments

你可能感兴趣的:(AndroidStudio终端显示-iTerm2+zsh)