windows安装oh my posh
安装字体
oh-my-posh有一些主题使用了Nerd font,我们需要安装他们避免出现乱码 进入Nerd Fonts - Iconic font aggregator, glyphs/icons collection, & fonts patcher。下载喜欢的字体。我这里选择了Caskaydia Cove Nerd Font。
安装的时候请选择带Windows Compatible
后缀的字体。
安装Powershell ,并将它改为Windows terminal 默认Shell
允许运行脚本
以管理员身份打开PowerShell 输入 set-executionpolicy remotesigned
安装oh-my-posh,Readline
1 | winget install JanDeDobbeleer.OhMyPosh -s winget |
修改配置文件
接下来,我们需要修改我们Powershell的配置文件。
1 | code $PROFILE |
我们在这个文件中加入下列内容
1 | oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/ys.omp.json" | Invoke-Expression |
posh主题路径
1 | C:\Users\DXY\AppData\Local\Programs\oh-my-posh\themes |