Oh My Zsh

Ling Yu
更换linux终端为zsh
准备
查看系统当前shell
echo $SHELL
查看bin下是否有zsh包
cat /etc/shells
安装
安装zsh
yum install zsh -y # centos7环境
apt install zsh # debian
centos 8 下
dnf -q provides '*/chsh'
yum install util-linux-user-2.32.1-35.el8.x86_64
切换shell至zsh,代码如下:
chsh -s /bin/zsh
安装Git
yum install git -y
安装on-my-zsh
全局安装 ZSH="/opt/.oh-my-zsh" sh ./install.sh
默认安装 1.wget
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
2.curl
ZSH="/opt/.oh-my-zsh" sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
3.fetch
sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
安装插件
#自动补全
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH/plugins/zsh-autosuggestions
#代码高亮
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH/plugins/zsh-syntax-highlighting
复制默认.zshrc配置
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
修改zshrc配置
编辑配置
vim ~/.zshrc # plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
source ~/.zshrc