查看系统预设 Shell。
cat /etc/Shells
安装 zsh。
sudo dnf -y install zsh
安装oh-my-zsh,使用一条命令即可。
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sh -c "$(curl -fsSL https://gitee.com/shmhlsy/oh-my-zsh-install.sh/raw/master/install.sh)"
设置主题
修改配置文件 ~/.zshrc
中的 ZSH_THEME
来设置使用的风格。
ZSH_THEME="bira"
更新配置也可以选择重起终端
source ~/.zshrc
颜色风格
有时 zsh-autosuggestions
插件的提示颜色看不清,可以通过修改颜色处理。打开配置文件 ~/.oh-my-zshcustom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
修改以下配置项
typeset -g ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=12'
标签:Fedora,autosuggestions,36,raw,sh,install,zsh,ohmyzsh
From: https://www.cnblogs.com/mlcoor/p/16729562.html