Mac终端 oh-my-zsh配置

Mac 终端默认 shell 为 bash。
本文主要介绍使用 zsh 以及 oh-my-zsh 的配置。

使用 zsh

首先查看安装的 shell

cat /etc/shells

//终端输出的值
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh

使用 brew 更新 zsh; 如果不知道brew是什么请先百度查看并安装brew

brew install zsh

//终端输出的值
==> Downloading https://homebrew.bintray.com/bottles/zsh-5.5.1.high_sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring zsh-5.5.1.high_sierra.bottle.tar.gz
/usr/local/Cellar/zsh/5.5.1: 1,444 files, 12MB

切换为 zsh

chsh -s /bin/zsh

重启终端即可使用 zsh

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

//终端打印的值
  ____  / /_     ____ ___  __  __   ____  _____/ /_  
 / __ \/ __ \   / __ `__ \/ / / /  /_  / / ___/ __ \ 
/ /_/ / / / /  / / / / / / /_/ /    / /_(__  ) / / / 
\____/_/ /_/  /_/ /_/ /_/\__, /    /___/____/_/ /_/  
                        /____/                       ....is now installed!


Please look over the ~/.zshrc file to select plugins, themes, and options.

p.s. Follow us at https://twitter.com/ohmyzsh.

p.p.s. Get stickers and t-shirts at http://shop.planetargon.com.
主题

打开 oh-my-zsh 配置文件

vim ~/.zshrc

Mac终端 oh-my-zsh配置_第1张图片
image.png

配置项 ZSH_THEME 即为 oh-my-zsh 的主题配置,oh-my-zsh 的 GitHub Wiki 页面提供了 主题列表
当设置为 ZSH_THEME=random 时,每次打开终端都会使用一种随机的主题。

更新配置

source ~/.zshrc
提示安装
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions

vim ~/.zshrc

plugins=(
  zsh-autosuggestions
  git
)

你可能感兴趣的:(Mac终端 oh-my-zsh配置)