Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 Mac OS X 上安装了 zsh,但 zsh 无法正常工作。
主题工作正常,但 git 的输出没有着色。
有什么问题?
这是我的 .zshrc 的一部分:
plugins=(git) export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin source /usr/local/bin/virtualenvwrapper.sh
which git给了我这个:
which git
/usr/bin/git
着色 git 输出是通过~/.gitconfig. 你有没有尝试过:
~/.gitconfig
git config --global color.ui auto
更多信息在这里