# WindowsTerminalProfiles **Repository Path**: smslit/WindowsTerminalProfiles ## Basic Information - **Project Name**: WindowsTerminalProfiles - **Description**: Windows New Terminal 的配置文件 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-11-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Windows Terminal Profiles ### 介绍 Windows New Terminal 的配置文件 ### 配置 #### 安装 oh-my-posh 需要使用PowerShell Gallery 来安装 oh-my-posh ```powershell Install-Module posh-git -Scope CurrentUser Install-Module oh-my-posh -Scope CurrentUser ``` #### 配置 Powershell ```powershell if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } notepad $PROFILE ``` 打开记事本后,添加以下内容: ```ps Import-Module posh-git Import-Module oh-my-posh Set-Theme Paradox ``` 重启终端。