使用Powershell操作Git
哎呀我的贵宾
哦,我的天呐,安装Oh My Posh
-
- 使用winget安装
-
- winget安装JanDeDobbeleer.OhMyPosh -s winget
重新启动终端
字体的安装
-
- 以管理员权限启动终端。
-
- 安装字体。
-
- 安装 oh-my-posh 字体。
重新启动终端。
字体设置
Windows终端
-
- 【设置(Ctrl+,)】→【打开JSON文件】
-
- 或者
-
- 打开Json文件(Ctrl+Shift+,)
-
- 设置字体
-
- {
-
- “配置文件”:
-
- {
-
- “默认”:
-
- {
-
- “字体”:
-
- {
-
- “样式”: “MesloLGM NF”,
-
- “大小”: 10
-
- }
-
- }
-
- }
- }
VS Code can be paraphrased in Chinese as:
视觉代码
-
- 将以下内容用中文重新表述,只需一个选项:
-
- [设置(Ctrl +,)]→[终端 > 综合:字体系列(terminal.integrated.fontFamily)]
- 设定字体为”MesloLGM NF”
在个人资料中添加Oh My Posh。
-
- 打开配置文件
-
- notepad $PROFILE
追加oh-my-posh的设置
oh-my-posh init pwsh | Invoke-Expression
重新加载配置文件
. $PROFILE
定制(选项)
主题
-
- 确认主题
-
- 获取Posh主题
确认主题文件名
%LOCALAPPDATA%\Programs\oh-my-posh\themes
$env:LOCALAPPDATA\Programs\oh-my-posh\themes
更改配置文件设置
$ThemePath = $env:LOCALAPPDATA + ‘\Programs\oh-my-posh\themes\powerlevel10k_rainbow.omp.json’
oh-my-posh init pwsh –config $ThemePath | Invoke-Expression
高级-Git
高级Git的安装
```powershell
Install-Module posh-git -Scope CurrentUser -Force
```
将Posh-Git添加到配置文件中。
-
- 打开配置文件
-
- 记事本 $PROFILE
添加设置到 oh-my-posh
导入模块 posh-git
重新加载配置文件
. $PROFILE