一、如果你是mac,请往下看。
二、安装
自动安装:
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
手动安装:
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
三、配置
1、在终端输入:
atom .zshrc
这样 Atom 会打开名为 “.zshrc” 的文件。
把里面内容为以下的这样:ZSH_THEME="robbyrussell"
修改替换成下面这样:
ZSH_THEME="agnoster"
备注:意思其实是把 ZSH_THEME="robbyrussell" 修改成 ZSH_THEME="agnoster" (前面加 # 是把所在行的内容给注释掉、不起作用的意思,用注释的方式以防以后会用到或者提示我们之前做了哪些修改)。
2、修改 agnoster 的 theme source code
在终端输入:atom ~/.oh-my-zsh/themes/agnoster.zsh-theme
这样 Atom 会打开名为 “agnoster.zsh-theme” 的文件。然后把这个文件里的全部内容替换成这个链接:https://gist.github.com/agnoster/3712874/raw/c3107c06c04fb42b0ca27b0a81b15854819969c6/agnoster.zsh-theme里面的内容。(意思是:打开这个网站,复制出里面的内容后,粘贴覆盖掉这个文件“agnoster.zsh-theme”里的所有内容)
存档(按 command + s)后关闭 Atom。
3、安装字型
因为 agnoster 需要特殊字型,所以必须安装 patched 过的三个字体。请去这个链接下载三个字体:https://gist.github.com/1595572下载后双击安装这三个字体。
具体的细节请看:
http://docs.qzy.camp/docs/iterm2
网友评论