Scoop 安装
- 允许本地脚本执行
bash
set-executionpolicy remotesigned -scope currentuser
- 安装
PowerShell iex (new-object net.webclient).downloadstring('https://get.scoop.sh') ···
- 检查 scoop
bash
scoop -v
windows terminal
- 在https://github.com/microsoft/terminal/releases下载安装包,执行.msixbundle 文件
- 主题配置
windows terminal 配置文件修改,你也可以查看上面文档选择自己喜欢的
json
"profiles": {
"defaults": {
"colorScheme": "Solarized Light",
"fontFace": "Cascadia Code PL"
},
...
},
oh my posh 安装
bash
scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/oh-my-posh.json
posh-git 安装
bash
scoop install posh-git
Add-PoshGitToProfile
在 windows terminal 中使用
- 查看 PowerShell 配置文件路径,文件夹打开没看见就按他的名字跟路径新建一个
bash
$profile
- 将这些内容添加到 PowerShell 配置文件中
主题列表,我选择的是 Paradox
bash
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme Paradox
- 下载字体文件
https://github.com/microsoft/cascadia-code/releases
解压后添加到 C:\Windows\Fonts 中