@RinggaVpowershell7 自用配色方案留档 中发帖

1. 效果
[image]
2. 创建初始化脚本文件
powershell 执行
if (!(Test-Path -Path $PROFILE)) {
New-Item -ItemType File -Path $PROFILE -Force
}
notepad $PROFILE

3. 复制 powershell 初始化脚本
#region conda initialize
$condaExe = "D:\Softwares\miniconda3\Scripts\conda.exe"
if (Test-Path $condaExe) {
$hook = (& $condaExe "shell.powershell" "hook") | Out-String
if ($hook) {
Invoke-Expression $hook.Replac...