Ubuntu系统上手美化
写在开头,这篇文章是从Ubuntu 美化与终端配置 - Fing’s Blog (imfing.com)这篇文章中节选出适用我自己配置ubuntu server的内容。重新复制这篇文章的主要原因是方便自己未来重装系统后配置美化用。所有对配置文章感兴趣的小伙伴,请参考Fing‘ Blog的原文。
终端配置
首先安装 zsh 并通过 chsh
命令将其设置为默认的 Shell 环境。
1 | # 安装 zsh |
安装 Oh My Zsh
1 | sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
配置Zsh
安装Powerlevel10k主题
1
2
3git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
vim ~/.zshrc在
.zshrc
文件中设置ZSH_THEME="powerlevel10k/powerlevel10k"
安装Powerlevel10k的推荐字体(如果终端能正常显示图标,就不需要安装)
安装zsh插件
1
2
3
4git 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
vim ~/.zshrc在
.zshrc
文件中设置plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
更新 zsh 配置文件
1
source ~/.zshrc
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 面具熊小屋!