初次运行系统引导程序时,不能点击使用第三方库文件,否则引导程序会卡死无法运行。
更新系统文件(初次更新耗时较长):
sudo dnf update
安装常用软件:
sudo dnf install fastfetch zsh gnome-tweaks neovim
zsh
启用zsh:
chsh -s /bin/zsh
安装oh-my-zsh(来自oh-my-zsh官网):
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
安装powerleval10k主题,之后程序会引导完成主体配置:
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
安装zsh-autosuggestions、zsh-syntax-highlighting:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
修改zsh配置文件:
vim ~/.zshrc
.zshrc
ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting z extract web-search)
重启zsh:
zsh
持续更新完善中……