Mac iTerm 2 + oh-my-zsh + agnoster

配置一个漂亮的终端

  • 效果


    Mac iTerm 2 + oh-my-zsh + agnoster_第1张图片
    最后效果
下载 iTerm 2 官网

https://www.iterm2.com/

安装 oh-my-zsh 官网

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

更换默认的 shell
  1. 终端执行命令
    chsh -s /bin/zsh
  2. 更换zsh之后默认启动执行脚本变为了~/.zshrc
    如果你之前使用的.bash_profile需要:
    修改~/.zshrc文件,在其中添加:source ~/.bash_profile 和 source ~/.bashrc
更换 agnoster 主题
  1. 打开.zshrc文件
    open ~/.zshrc
  2. 修改
    ZSH_THEME="agnoster"
  3. 保存重新打开 iTerm 2
下载 Powerline fonts 字体 官网
  1. clone
    git clone https://github.com/powerline/fonts.git --depth=1
  2. install
    cd fonts
    ./install.sh
  3. clean-up a bit
    cd ..
    rm -rf fonts
修改 iTerm 2 配置
  1. 进入 Preferences... Profiles Text Font 选择 Powerline 字体


    Mac iTerm 2 + oh-my-zsh + agnoster_第2张图片
    选择 Powerline 字体
  2. 修改 Solarized 配色方案


    Mac iTerm 2 + oh-my-zsh + agnoster_第3张图片
    修改 Solarized 配色方案
去掉前面的用户名称
  1. 打开agnoster.zsh-theme文件
    open ~/.oh-my-zsh/themes/agnoster.zsh-theme
  2. 注释 prompt_context
build_prompt() {
  RETVAL=$?
  prompt_status
  prompt_virtualenv
#  prompt_context
  prompt_dir
  prompt_git
  prompt_bzr
  prompt_hg
  prompt_end
}
  1. 保存重新打开 iTerm 2

你可能感兴趣的:(Mac iTerm 2 + oh-my-zsh + agnoster)