deepin安装oh my Zsh
介绍
安装
linux
# 安装
sudo apt-get install zsh
# 查看版本
zsh --version
# 设置为默认shell
chsh -s $(which zsh)
# 注销并重新登录以使用最新的默认shell
# 默认shell会提示没有.zshrc文件,不要管,后面安装oh my Zsh后会自动创建
# 关闭重新打开终端,提示消失
# 安装oh my Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# 如果无法访问raw.githubusercontent.com,可以使用下面的方式安装
sh -c "$(curl -fsSL https://install.ohmyz.sh)"
windows
plugin
参考
Last updated
Was this helpful?