1、安装zsh
sudo apt-get install zsh
2、安装 oh my zsh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
关于oh my zsh可以看如下的链接:https://ohmyz.sh/community.html
当然也可以通过
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
3、配置文件
3.1创建配置文件
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
3.2设置zsh为默认的shell
chsh -s /bin/zsh
此时重新启动Ubuntu即可享受新的终端。
4、注意事项
4.1修改主题
可以去https://github.com/robbyrussell/oh-my-zsh/wiki/themes看看你喜欢什么主题,然后在.zshrc文件中进行更改。
https://blog.csdn.net/lxn9492878lbl/article/details/80795413