安装oh-my-posh oh-my-posh 是一个 Powershell 的主题项目,可以将 Powershell 美化成类似 ohmyzsh 的效果。安装 oh-my-posh 也很简单,运行下面的命令即可。posh-git是一个在提示符中显示 git 仓库信息的包,建议同时安装。 scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/down...
新建主题文件,code C:\Users\xxxx\Documents\WindowsPowerShell\PoshThemes\ys-like.psm1, 写入以下内容: #requires -Version 2 -Modules posh-gitfunctionWrite-Theme{param([bool]$lastCommandFailed,[string]$with)# check the last command state and indicate if failedIf($lastCommandFailed){$prompt+=Write-...
Import-Module posh-git # 引入 posh-git Import-Module oh-my-posh # 引入 oh-my-posh# 设置主题 oh-my-posh init pwsh --config "C:\Users\32651\AppData\Local\Programs\oh-my-posh\themes\M365Princess.omp.json" | Invoke-Expression # Set-PSReadLineOption -PredictionSource History # 设置预测文本...
posh-git, git命令行提示工具。安装成功后,可以在$profile中导入模块,这样每次打开都可以使用。可以只能提示,和把当前的分支在prompt中显示。 oh-my-posh oh-my-posh,类似于oh-my-zsh,有很多的主题,可以自己切换。 posh-git和oh-my-zsh安装包之后,需要通过命令或者直接在$profile文件里添加Import-Module module-...
Install-Moduleposh-git-ScopeCurrentUser3.安装 oh-my-posh 包,让你的命令行更酷炫、优雅 Install-Moduleoh-my-posh-ScopeCurrentUser 5.配置Windows Terminal 打开Windows Terminal,进入设置,找到配置文件,新建配置文件,名字为PowerShell Core,命令行为刚才安装的Powershell文件夹下的/pwsh.exe,然后保存。
Install-Moduleposh-git-ScopeCurrentUserInstall-Moduleoh-my-posh-ScopeCurrentUser 配置主题 可参考 Upgrading | Oh My Posh Get-PoshThemes# 预览所有主题 新增(或修改)你的 PowerShell 配置文件 # 如果之前没有配置文件,就新建一个 PowerShell 配置文件if(!(Test-Path-Path$PROFILE)) {New-Item-TypeFile-Pat...
# posh-git 将 git 信息添加到提示中 Install-Module posh-git-Scope CurrentUser 4. 编辑相应配置文件 在WindowsTerminal 中输入以下两条命令 代码语言:javascript 复制 # 如果之前没有配置文件,就新建一个 Powershell 配置文件if(!(Test-Path-Path $PROFILE)){New-Item-Type File-Path $PROFILE-Force}# 打开...
git、npm 等常用 CLI 工具,补全功能往往由 PowerShell 模块提供,git 可以使用posh-git模块,yarn 和 npm 可以使用posh-yarn-completion以及posh-npm-completion。以 npm 为例,首先安装模块: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser Install-Module npm-completion -Scope CurrentUser ...
个人推荐 Windows Terminal + PowerShell + oh-my-posh + posh-git。 2. 安装 2.1 Windows Terminal Windows Terminal(WT)总算是微软拿得出手的一款开源终端应用了,其可以在 MicroSoft Store 里免费下载到。WT 可以用于 CMD、PowerShell 和 WSL 等终端解释器,WT 的开源仓库:https://github.com/microsoft/termin...
自动启动posh@powershell的配置文件 "$Profile" 推荐的 posh-git模块 自定义powershell命令行提示符的样式👺 简单修改 带上电量 基本的配置效果👺 卸载@移除 oh-my-posh👺 使用winget卸载 手动卸载 安装oh my posh Windows | Oh My Posh 文档提供了多种方式安装,但是国内可能下载不下来 ...