标签:ebe padding bash oat pre hub size neu container
安装 zsh
yum -y install zsh
替换默认shell
chsh -s /bin/zsh
查看当前shell
echo $SHELL
安装git
yum -y install git
克隆oh-my-zsh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
复制zshrc
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
断开重连,看效果:
? / ls
查看主题
cd ~/.oh-my-zsh/themes && ls
修改主题
vim ~/.zshrc
# ZSH_THEME="robbyrussell"
ZSH_THEME="powerlevel9k/powerlevel9k"
下载powerlevel9k主题
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
参考:
标签:ebe padding bash oat pre hub size neu container
原文地址:https://www.cnblogs.com/linyufeng/p/12084401.html