📌 📄 内容摘要:
@RinggaV 在 powershell7 自用配色方案留档 中发帖
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...
────────── 链接信息 ────────── 🔗 论坛链接: linux.do 📎 访问地址: https://linux.do/t/topic/1366186/1 ─────────────────────────────
📢 来源:LINUX DO | 标签:#region