给Mac终端增添“色彩”(iTem2 + oh-my-zsh + powerlevel9k)

作为一个一直在路上追求艺术和高效的汉子,为了在使用命令行的过程中让自己更加赏心悦目,我又来折腾我的终端了。

目标的效果如下:

image

为什么选择ITem2

  1. 功能强大,譬如搜索功能强大,搜索出来的匹配字符高亮显示;
  2. 分屏功能强大,一定程度上可以代替tmux(自认为iTerm2的自带分屏功能比 tmux 香‍♂️);
  3. 可以配置的更加优雅、艺术。

安装iTem2

  1. 首先在官网 http://iterm2.com/ 下载 iTem2 。

  2. 将iTem2设置为默认终端:iTerm2 -> Make iTerm2 Default Term

    image

go2shell的安装

go2shell可以在finder中款速打开对应的文件夹
简单说下安装遇到的坑

其实标题是有些误导的go2shell 这个命令行cd神器其实并没有失效。下载最新版本就好了。
但是这里会有一个问题每次打开launchpad里的go2shell图标跟原来不一样不是进入item2了而是进入了设置

image

这里的helper隐藏的比较深路径下
/Applications/Go2Shell.app/Contents/MacOS
有这两个玩意

image

按下Cmd + 拖拽 helper图标到finder拓展栏和docker里

导入iTem2配色

一般我所有的软件的配色都是设置为Solarized,iTem2已经内置了,但感觉差点。

为实现文章开头中的效果,则需要导入Material Design配色,下载后通过Preferences > Profiles > Colors > Color Presets > Import进行设定。

image

在iTerm2 Color Schemes上面,有很多配色可以选择,可按照自己的喜欢进行下载。

注:重新打开iTem2窗口则会生效。

安装oh-my-zsh

安装命令:

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

但是在我这报错,我就直接将install.sh下载下来,然后sudo sh install.sh进行了安装。

执行完以后如果没有出现什么报错,在Home文件夹下生成了 ~/.oh-my-zsh文件夹就代表成功了

安装oh-my-zsh的插件

  1. 安装语法高亮插件
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting

  1. 安装自动补全插件
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions

安装字体

因为我们要用的主题会用到很多的特殊icon,所以iTerm2 选用的字体必需要支援这种特殊icon font。

没有安装的话会现在如下这样,遇到icon会变框框问号:

image

安装完字体后的效果:

image

点击Meslo LG L DZ Regular Nerd Font Complete 下载字体,双击进行安装。

然后通过Preferences > Profiles > Text进行设定。

image

安装zsh powerlevel9k 主题

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

修改zsh配置

为了让powerlevel9k主题生效,需要修改~/.zshrc:vim ~/.zshrc,修改主题为powerlevel9k:

ZSH_THEME="powerlevel9k/powerlevel9k"
# Nerd 字体
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
# command line左边想显示的内容:系统icon、用户、写权限、路径、版本控制系统等
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon user dir_writable dir vcs)
# command line右边想显示的内容:状态、命令执行时间、...、系统时间、已用空间、RAM占用
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status command_execution_time root_indicator background_jobs time disk_usage ram)
#POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )"
#POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
#POWERLEVEL9K_USER_ICON="\uF415" # 
POWERLEVEL9K_ROOT_ICON="\uF09C"
#POWERLEVEL9K_SUDO_ICON=$'\uF09C' # 
POWERLEVEL9K_TIME_FORMAT="%D{%H:%M}"
#POWERLEVEL9K_VCS_GIT_ICON='\uF408 '
#POWERLEVEL9K_VCS_GIT_GITHUB_ICON='\uF408 '

ZSH_DISABLE_COMPFIX=true

ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
# zsh插件
plugins=(
  git
  iterm2
  macports
  man
  osx
  python
  composer
  zsh-syntax-highlighting
  zsh-autosuggestions
)

source $ZSH/oh-my-zsh.sh

alias suroot='sudo -E -s'

# source ~/.bash_profile

if [ -f ~/.bash_profile ]; then
    . ~/.bash_profile;
fi

最终就可以实现了这种显示效果:

image

引用链接:https://wangcong.net/article/iTem2Setting.html

你可能感兴趣的:(给Mac终端增添“色彩”(iTem2 + oh-my-zsh + powerlevel9k))