0%

zsh 配置并美化

安装zsh

1
2
3
4
5
# Arch Linux
pacman -S zsh

# 更换用户shell
chsh -s /bin/zsh

安装oh-my-zsh

oh-my-zsh github

1
2
# 官网安装方法
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

注意
众所周知的原因,某些时候我们访问不了。raw 的github 网址,这个时候我们,可以自己手动访问raw 保存为 install.sh 赋予权限并运行,此方法适合,能坐小xx,但是linux无法访问的同学。

配置插件 .zshrc

所有文件都在 .zshrc 中配置
安装 zsh-syntax-highlighting 语法高亮,正确命令显示绿色,错误命令显示红色

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

github 主页

1
2
3
4
5
6
7
8
# 主要插件 ,最后一个必须安装
plugins=(
git
sudo
z
pip
zsh-syntax-highlighting
)

使 .zshrc 生效

最后使 zshrc 生效

1
source .zshrc

参考博客及文档
taoist 博客
zsh-syntax-highlighting
oh-my-zsh