wsl 字体下载
JetBrains Mono Regular Nerd Font Complete Mono.zip
https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#meslo-nerd-font-patched-for-powerlevel10k
1 2 3 4 5 6 7 8 9
| # powerlevel10k主题 git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k # zsh-autosuggestions自动提示插件 git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # zsh-syntax-highlighting语法高亮插件 git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# 配置powerlevel10k p10k configure
|
编辑~/.zshrc文件启用插件和主题
1 2 3 4 5 6 7 8 9
| # 修改主题 ZSH_THEME="powerlevel10k/powerlevel10k"
# 启用插件 plugins=( git zsh-autosuggestions zsh-syntax-highlighting )
|