安装模块:
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
Install-Module -Name PSReadLine -Scope CurrentUser -Force -SkipPublisherCheck
Install-Module -AllowClobber Get-ChildItemColor -Scope CurrentUser
下载完之后,在文档下面创建 Microsoft.PowerShell_profile.ps1
文件,写下对应的美化脚本即可。
也可以通过
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
来创建Microsoft.PowerShell_profile.ps1
文件
将 config 目录下的 .ps1
文件复制上去即可。