brew install zsh
sudo apt install -y zsh
Arch (manjaro) 安装 zsh
sudo pacman -Sy zsh
cat /etc/shells
输出结果:
/bin/sh
/bin/bash
/usr/bin/bash
/bin/rbash
/usr/bin/rbash
/usr/bin/sh
/bin/dash
/usr/bin/dash
/bin/zsh
/usr/bin/zsh
以上输出结果可以看到已经有 zsh 了
执行命令:
chsh -s /bin/zsh
重启系统!
执行命令:
echo $SHELL
输出结果:
/bin/zsh
以上输出结果可以看到,默认的 shell 已经变成了 zsh
安装 OhMyZsh 的过程中会从 Github 克隆 OhMyZsh 相关文件,所以必须安装 git
brew install git
sudo apt-get -y install git
sudo pacman -Sy git
解决raw.githubusercontent.com无法访问:
sudo sh -c 'echo "185.199.108.133 raw.githubusercontent.com" >> /etc/hosts'
code
选项卡 快捷按钮code
绿色按钮,在下拉菜单中点击 Download ZIP
, 来下载 Oh My Zsh 安装文件 快捷按钮,建议下载到 ~/Downloads
目录下。下载好的文件名为 ohmyzsh-master.zipunzip ohmyzsh-master.zip
将文件解压,解压后得到 ohmyzsh-master 的目录cd ohmyzsh-master/tools
进入 tools 目录./install.sh
来执行 install.sh 文件,进行 Oh My Zsh 的安装# 用 curl 安装
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# 或者用 wget 安装
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://gitee.com/hello-luiswu/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://gitee.com/hello-luiswu/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
vim ~/.zshrc
命令(前提是你安装了 vim),打开zsh的配置文件文件找到以下内容:
plugins=(git)
替换成以下内容:
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)