发布网友 发布时间:2022-04-21 04:07
共1个回答
热心网友 时间:2022-06-17 22:03
首先,把Terminal的shell改一下:
chsh -s /bin/zsh
OS X自带zsh,还是比较方便的哈。
修改下你的Terminal的 ‘偏好设置’,
就像这样:
原则就是:长时间看不刺眼睛 & 关键信息醒目一眼就看到。
在你安装了git后,就可以使用robbyrussell/oh-my-zsh · GitHub了。
以下是从README上搬运来的。oh-my-zsh安装步骤:
1. Clone the repository:
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
2. Optionally, backup your existing @~/.zshrc@ file:
cp ~/.zshrc ~/.zshrc.orig
3. Create a new zsh configuration file
You can create a new zsh config file by copying the template that we included for you.
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
我个人依照我的需求把默认theme修改了下,仅仅是修改了默认主题:
vim ~/.oh-my-zsh/themes/robbyrussell.zsh-theme
改成这样了:
PROMPT='${ret_status}%M%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}
说明:就是添加了主机名。而默认theme不显示主机名。因为经常登录远程服务器,虚拟机什么的。能够识别是Mac还是远程机器,免得犯错。(另外,除了默认主题外,其他的主题都删了)
最后就是这样的了: