$status=Get-VCSStatusif($status){$themeInfo=Get-VcsInfo-status($status)$prompt+=Write-Prompt-Object'on git:'-ForegroundColor$foregroundColor$prompt+=Write-Prompt-Object"$($themeInfo.VcInfo)"-ForegroundColor$sl.Colors.GitForegroundColor}# write [time]$timeStamp=Get-Date-FormatT$prompt+=Write-Pr...
设置-选择PowerShell或者GitBash或者cmd-外观 四.配置Shell终端以使用oh-my-posh # 通过记事本打开powershell配置文件 notepad $PROFILE # 若上述命令报错,找不到powershell配置文件,则需创建powershell配置文件,执行如下命令 New-Item -Path $PROFILE -Type File -Force 接着在配置文件中添加如下内容 Import-Module ...
在PowerShell中运行以下命令,导入posh-git模块: powershell Import-Module posh-git 如果你希望每次打开PowerShell时都自动加载posh-git,可以将上述命令添加到你的PowerShell配置文件中(如Microsoft.PowerShell_profile.ps1)。 验证posh-git是否已成功启动: 成功导入模块后,你应该能够在PowerShell提示符中看到posh-git...
Install-Module-Name posh-git-Scope CurrentUser 安装完成后,重启 PowerShell 并输入以下命令启用 posh-git:Import-Module posh-git 不生效的话可以在前面的配置文件Microsoft.PowerShell_profile.ps1中追加以下内容 代码语言:javascript 复制 Import-Module posh-git # 引入 posh-git 历史命令联想 oh-my-zsh有一个...
第一条(启动编辑power shell配置文件的引擎) if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } 第二条(使用记事本打开配置文件) notepad $PROFILE 2.在打开的记事本中写入如下内容(脚本文件),并保存 Import-Module posh-git ...
推荐使用 Darkblood ,因为和vs code 一起使用的话,vs里面展示的终端,这个看起来更兼容一些 符号少。主题需要下载字体和图标才好看。 卸载主题 清空里面的内容Microsoft.PowerShell_profile.ps1 即可。 Import-Moduleposh-gitImport-Moduleoh-my-poshSet-PoshPrompt-ThemeDarkblood...
Import-Module posh-git Import-Module oh-my-posh Set-PoshPrompt -Theme paradox ``` 同时,oh-my-posh的的主题文件支持高度的可自定义性,主题的配置文件在`%powershell安装目录%\Modules\oh-my-posh\%oh-my-posh版本号%\themes`中,我们打开`paradox`主题的配置文件 删除掉session segment,以关闭用户名的显...
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...
https://github.com/dahlbyk/posh-git/ install in seconds: Start Windows PowerShell 5.x or PowerShell >= v6 (pwsh). Execute one of the following two commands from an elevated PowerShell prompt, depending on whether (A) you’ve never installed posh-git, or (B) you’ve...
和Oh-My-Posh 在执行这一步前,先确保你安装了 git 在这一步中,我们会安装 Posh-Git 和 Oh-My-Posh:在 PoweShell 窗口中,用 Terminal 打开 PowerShell...也行,执行以下命令 Install-Module posh-git -Scope CurrentU...