美文网首页程序员
在 CentOS 中安装 oh my zsh

在 CentOS 中安装 oh my zsh

作者: imluxin | 来源:发表于2018-11-21 10:53 被阅读0次

oh-my-zsh Github:

https://github.com/robbyrussell/oh-my-zsh

安装步骤:

  1. 安装 zsh
yum install zsh
  1. 安装 oh-my-zsh

via curl

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

via wget

sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
  1. 修改主题(推荐主题 avit)

配置文件位置: ~/.zshrc
修改参数: ZSH_THEME = "avit";
重新打开shell后,设置生效。

image.png

更多主题: https://wiki.github.com/robbyrussell/oh-my-zsh/themes

相关文章

网友评论

    本文标题:在 CentOS 中安装 oh my zsh

    本文链接:https://www.haomeiwen.com/subject/yruqqqtx.html