前端之家收集整理的这篇文章主要介绍了
ubuntu14.04安装zsh,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一、检查系统安装那些shell
cat /etc/shells
# 没有zsh安装命令
sudo apt-get install zsh
sudo apt-get install git-core
二、安装zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
三、修改使用默认bash
chsh -s `which zsh`
四、输出当前使用bash
echo $SHELL
五、设置显示完整路径
# 查询使用主题
cat ~/.zshrc | grep "ZSH_THEME"
cd .oh-my-zsh/themes
vim robbyrussell.zsh-theme
//PROMPT='${ret_status} %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)'
PROMPT='${ret_status} %{$fg[cyan]%}%d%{$reset_color%} $(git_prompt_info)'
六、重启
sudo shutdown -r 0
七、参考
原文链接:https://www.f2er.com/ubuntu/350170.html