Step 1 安装zsh
没有安装zsh的话,先安装zsh,通过zsh --version
可以check安装了没。
安装方法:yum -y install zsh
(centOS下)。
其他系统类似,如apt-get install zsh
Step 2 安装Oh-My-Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Step 3 安装Powerline
pip install powerline-status
若提示没有pip,则先安装pip1
2
3yum -y install epel-release
yum -y update
yum -y install python-pip
Step 4 安装agnoster主题
1 | git clone https://github.com/fcamblor/oh-my-zsh-agnoster-fcamblor.git |
vi ~/.zshrc
,然后将ZSH_THEME后面的字段改为agnoster。ZSH_THEME=”agnoster”
Step 5 增加指令高亮效果
输入指令时,若指令错误则红色高亮效果。1
2cd ~
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git
vi ~/.zshrc
,最后加入source ~/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
,同时plugins里面添加zsh-syntax-highlighting。
Step 6 安装autojump
1 | git clone git://github.com/joelthelion/autojump.git |
vi ~/.zshrc
,plugins里面加入autojump,同时文件末尾添加[[ -s /root/.autojump/etc/profile.d/autojump.sh ]] && source /root/.autojump/etc/profile.d/autojump.sh
Step 7 完成
退出SSH重新登入,享受全新的zsh吧!