item2 + oh my zsh 安装

安装iTerm2

iTerm2官方下载地址 ,直接下载安装即可。


安装oh my zsh

1.通过cat /etc/shells命令可以查看当前系统可以使用哪些shell;

# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh

2.通过echo $SHELL命令可以查看我们当前正在使用的shell;

# Mac系统中默认的shell为bash shell
/bin/bash

3.如果当前的shell不是zsh,我们可以通过chsh -s /bin/zsh命令可以将shell切换为shell之zsh,终端重启之后即可生效。

4.将shell切换为zsh之后,我们就可以安装Oh My ZSH了
官方推荐的安装方法为:

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

5.安装成功后,如下图:
item2 + oh my zsh 安装

oh my zsh 默认安装在:~/.oh-my-zsh 目录下,配置文件默认为:~/.zshrc

设置快捷命令

输入vim ~/.zshrc,修改 zsh 的配置文件,在文件的最后alias中,添加 alias 快捷命令名="实际命令"即可。

item2 + oh my zsh 安装

配置完成后需要执行一下命令,然后重启item2:

source ~/.zshrc

之后如果你在 item2 中再输入 nginxconfig 这个命令就可以快捷使用vim打开nginx的配置文件了(相当于执行了vim /usr/local/etc/nginx/nginx.conf


配置themes

Oh My Zsh提供的所有主题在线预览:
https://github.com/robbyrussell/oh-my-zsh/wiki/Themes

大部分主题可以通过以下操作直接更改:
1.进入配置文件

vi ~/.zshrc

2.将ZSH_THEME设置成你想要设置的themes,可从上面的themes列表中选择

ZSH_THEME="agnoster"

3.更新配置

source ~/.zshrc

配置特殊的agnoster主题

item2 + oh my zsh 安装

agnoster主题能否设置成功,还依赖于以下东西:

下载完成之后解压,在iTerm2Preferences——Profiles——colors——Load Presets中即可设置终端配色为Solarized Dark

  • 特殊字体安装

    • 下载完成之后解压,执行其中的install.sh文件
    # clone
    git clone https://github.com/powerline/fonts.git --depth=1
    # install
    cd fonts
    ./install.sh
    # clean-up a bit
    cd ..
    rm -rf fonts
  • iTerm2Preferences——Profiles——Text中同时将Regular FontNon—ASCII Font设置为Meslo LG M DZ Regular for Powerline或者Meslo LG M DZ for Powerline即可;

相关推荐