使用我们配置的字体:打开PowerShell 使用快捷键 Ctrl + Shift + ,来打开配置文件: 再运行:notepad $profile第一次会显示找不到该文件,选择创建新文件,然后输入并保存在文件里面输入:oh-my-posh init pwsh | Invoke-Expression然后回到Windows terminal新建一个powershell,即可看到以下内容修改主题:...
配置PowerShell 提示符主题 在terminal 中使用下面的命令打开:code 命令是vscode, 你也可以换成其他的命令:notepad $PROFILE code$PROFILE 这样我们打开默认的个人配置,并在配置文件中写入下面的内容,保存并退出: [System.Console]::OutputEncoding=[System.Text.Encoding]::GetEncoding(65001)# 配置默认编码oh-my-posh...
2. 配置整体运行文件 notepad $profile 将以下文本写入其中: oh-my-posh init pwsh --config <主题路径(json文件)> | Invoke-Expression Import-Module posh-git Import-Module Terminal-Icons Set-PSReadLineOption -PredictionSource History Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete cls 重新打开...
官方文档:https://ohmyposh.dev/ 现在的oh-my-posh可以直接从Microsoft Store下载exe文件安装了,别去折腾命令行的命令了,速度太慢了。 安装完成后,如果是windows系统,推荐Windows Terminal(没有的话在Microsoft Store里安装)下启动powershell。 二、配置 配置oh-my-posh过程中比较复杂的点就是Nerd Font和Themes这...
新建配置文件 加入内容 oh-my-posh init pwsh | Invoke-Expression 使生效 会报错不用管,没有什么是重启不能解决的——!是重启shell,不是重启电脑。五、主题 默认的是默认主题(废话)。主题网址:https://ohmyposh.dev/docs/themes 懒人请直接使用下列命令。之后它就会哒哒哒,任你翻牌,记下theme后面的爱妃...
配置Powershell 安装美化插件oh my posh 从网盘下载资料后,找到 soft 文件夹,将里面的 WindowsPowerShell 文件夹,复制到 "文档" 此时,打开powershell,会显示如下效果: oh my posh主题一览表 M365Princess agnoster# agnosterplus# aliens# amro# atomic# ...
配置 Oh-My-Posh 使用 JSON 文件进行配置,允许用户定义提示符的样式、颜色及显示的内容。 创建配置文件 首先,我们需要创建一个配置文件,例如 posh.json: 复制 { "final_space": true, "segments": [ { "type": "prompt", "style": "powerline", ...
2.3、配置 找到Windows Terminal配置文件: 我的路径是:C:\Users\79304\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1。 如果不存在的,可以新建该目录和文件: Microsoft.PowerShell_profile.ps1文件添加内容: 代码语言:javascript 复制 oh-my-posh init pwsh--config $env:POSH_THEMES_PATH\jandedobbe...
找到Windows Terminal配置文件: 我的路径是:C:\Users\79304\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1。 如果不存在的,可以新建该目录和文件: Microsoft.PowerShell_profile.ps1文件添加内容: oh-my-posh init pwsh --config $env:POSH_THEMES_PATH\jandedobbeleer.omp.json | Invoke-Expression...
点击保存,cmd就配置好了 六.Git Bash配置oh-my-posh 将“~\AppData\Local\Programs\oh-my-posh\themes\你想用的主题.omp.json” 文件拷贝到 C:\Users\你的用户名 目录下;再在 ~/.profile 文件(没有则touch .profile创建)添加命令,后执行 . ~/.profile 刷新,重启终端即可生效。