是什么 ? | : | a prompt theming engine for Powershell |
开发语言 | : | golang |
官方主页 | : | https://ohmyposh.dev |
源码仓库 | : | https://github.com/JanDeDobbeleer/oh-my-posh |
step1、设置PSGallery
为可信
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
PSGallery
是PowerShell
官方的模块仓库,后面我们要从此仓库中下载并安装一些模块。此仓库的默认状态是不可信的, 当您在安装模块的时候,会提示您,为了省去那些麻烦的提示,我们就设置它为可信的。
step2、在PowerShell
中执行如下命令
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
step3、将下面的配置加入到PowerShell
的配置文件中
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme PowerLine
step4、重新进入PowerShell
,效果如下