安装模块:

    1. Install-Module posh-git -Scope CurrentUser
    2. Install-Module oh-my-posh -Scope CurrentUser
    3. Install-Module -Name PSReadLine -Scope CurrentUser -Force -SkipPublisherCheck
    4. 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 文件复制上去即可。