oh-my-zsh-installation-guide

烈酒焚心 提交于 2020-02-27 06:48:24

你问我有啥用?

  • 默认ll命令支持
  • 默认文件夹着色
  • 其他各种插件

设置shell默认zsh(macOS Catalina 已默认是zsh)

查看当前shell

❯ echo $SHELL
/bin/zsh

如果不是,下面命令修改即可

chsh -s /bin/zsh

安装oh-my-zsh

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Themes

推荐pure,您见了就喜欢

地址:https://github.com/sindresorhus/pure

Pure theme

cd ~/.oh-my-zsh/custom && \
git clone https://github.com/sindresorhus/pure && \
ln -s pure/pure.zsh-theme . && \
ln -s pure/async.zsh . 
 
# Change in ~/.zshrc the ZSH_THEME to ZSH_THEME=refined

enjoy!!!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!