Linux 安装 zsh

1. 安装 zsh 软件包和 git
CentOS: yum -y install zsh git
Ubuntu:  sudo apt -y install zsh git
2. 克隆 oh-my-zsh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
3. 复制 .zshrc,修改命令提示符样式
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
ZSH_THEME="ys"
4. 修改 shell 类型
chsh -s /bin/zsh

你可能感兴趣的:(Linux 安装 zsh)