我是靠谱客的博主 淡定红酒,最近开发中收集的这篇文章主要介绍install zsh安装zsh切换shell安装 oh-my-zsh配置 oh-my-zsh,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
安装zsh
apt install zsh -y
查看系统中自带的shell
cat /etc/shells
切换shell
chsh -s /bin/zsh
安装 oh-my-zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh
bash ./install.sh
配置 oh-my-zsh
- 设置主题
参考主题
vim ~/.zshrc
# 编辑ZSH_THEME配置
ZSH_THEME="agnoster"
# 重启zsh,使配置生效
source ~/.zshrc
- 设置自动补全
# 安装自动补全
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
vim ~/.zshrc
# 添加自动补全配置
plugins=(zsh-autosuggestions)
# 重启,使配置生效
source ~/.zshrc
- 高亮
# 安装高亮
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
vim ~/.zshrc
# 添加高亮配置
plugins=(zsh-syntax-highlighting)
# 重启,使配置生效
source ~/.zshrc
最后
以上就是淡定红酒为你收集整理的install zsh安装zsh切换shell安装 oh-my-zsh配置 oh-my-zsh的全部内容,希望文章能够帮你解决install zsh安装zsh切换shell安装 oh-my-zsh配置 oh-my-zsh所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复