Centos7和Mac 安装 Oh My Zsh

 

先安装zsh

yum  install zsh -y

Centos7和Mac 安装 Oh My Zsh_第1张图片

看到上述图片证明安装成功

把bash切换为zsh

chsh -s /bin/zsh

看到上图则成功修改

然后安装oh my zsh

在github上有开源代码 也有安装教程 这里提供下github地址

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

开始安装(我现在用的是wget的方式)

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

看到这种情况就证明安装成功了

再安装zsh-autosuggestions插件

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

Centos7和Mac 安装 Oh My Zsh_第2张图片

修改zsh配置

vim ~/.zshrc

新增一条 zsh-autosuggestions 到 plugins

然后输入 :wq 保存数据

重置资源生效

source ~/.zshrc

现在输入就会自动提示上次输入的内容了

大功告成!!

 

Mac版的安装方法

首先安装brew

官网有方法 https://brew.sh/index_zh-cn.html 

在命令行输入 

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

然后输入mac的登录密码 等待安装过程(有点久 需要等待一会)

Centos7和Mac 安装 Oh My Zsh_第3张图片

当你出现这个界面代表安装成功了⤵️

Centos7和Mac 安装 Oh My Zsh_第4张图片

然后开始安装zsh

brew install zsh

Centos7和Mac 安装 Oh My Zsh_第5张图片

安装完成后

修改自带shell

chsh -s /bin/zsh

再安装oh my zsh 

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

Centos7和Mac 安装 Oh My Zsh_第6张图片

再安装zsh-autosuggestions插件

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

 

Centos7和Mac 安装 Oh My Zsh_第7张图片

修改zsh配置

vim ~/.zshrc

新增一条 zsh-autosuggestions 到 plugins

然后输入 :wq 保存数据

重置资源生效

source ~/.zshrc

现在输入就会自动提示上次输入的内容了

这样就安装成功了!!

 

你可能感兴趣的:(linux)