Mac下终端配置(item2 + oh-my-zsh + solarized配色方案)

一.安装oh-my-zsh和Iterm2

  • oh-my-zs 的 github连接:(https://github.com/robbyrussell/oh-my-zsh)
  • iTem2 这个软件,比Mac自带的终端更加强大。直接官网 http://iterm2.com/ 下载并安装即可。
Manual Installation
  1. Clone the repository:
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh

2.backup your existing ~/.zshrc file:

cp ~/.zshrc ~/.zshrc.orig
  1. Create a new zsh configuration file
    You can create a new zsh config file by copying the template that we have included for you.
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
  1. Change your default shell
chsh -s /bin/zsh

二.配色方案

我选用的是 solarized,效果还不错。点开官网,下载,解压,然后打开 iTerm2 下的偏好设置 preference ,点开 profiles 下的colors 选项,点击右下角的 Color Presets 选项,选择import ,导入解压到的 solarized 文件下的Solarized Dark.itermcolors。

三、主题

安装成功后,用vim打开隐藏文件 .zshrc ,修改主题为 agnoster:

ZSH_THEME="agnoster"

应用这个主题需要特殊的字体支持,否则会出现乱码情况,这时我们来配置字体:
1.使用 Meslo 字体,点开连接点击 view raw 下载字体。
2.安装字体到系统字体册。
3.应用字体到iTerm2下,我自己喜欢将字号设置为14px,看着舒服(iTerm -> Preferences -> Profiles -> Text -> Change Font)。
4.重新打开iTerm2窗口,这时便可以看到效果了。

image

四.自动提示命令

1.克隆仓库到本地 ~/.oh-my-zsh/custom/plugins 路径下

git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

2.用 vim 打开 .zshrc 文件,找到插件设置命令,默认是 plugins=(git) ,我们把它修改为

plugins=(zsh-autosuggestions git)

五.oh-my-zsh终端用户名屏蔽设置

1.打开oh-my-zsh/themes目录

cd ~/.oh-my-zsh/themes

2.查看自己主题,我的是agnoster,然后输入

echo $ZSH_THEME

3.将输出用户名的那一行注释掉

vi agnoster.zsh-theme

可以看到最下面对build_prompt的定义为


image.png

你可能感兴趣的:(Mac下终端配置(item2 + oh-my-zsh + solarized配色方案))