篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在MacOS中安装和配置Oh My Zsh! :)相关的知识,希望对你有一定的参考价值。
# Oh My Zsh in MacOS
1. Run `brew install zsh zsh-completions`
2. Run `zsh --version` - expected output is `zsh 4.3.9`
3. Install `Oh My Zsh` ->
* Via curl: `sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"`
4. Setup your favorite theme:
* In the `~/.zshrc` file look for the ENV var: `ZSH_THEME=` and set it to the name of your favorite theme, mine is: `gentoo`.
5. Get some of your favorite plugins and set them up in the `~/.zshrc` file, e.g.
```bash
plugins=(
git
node
bundler
dotenv
osx
rake
rbenv
ruby
)
```
6. Run `source ~/.zshrc` for the changes to take effect! :)
以上是关于markdown 在MacOS中安装和配置Oh My Zsh! :)的主要内容,如果未能解决你的问题,请参考以下文章