欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

windows terminal

程序员文章站 2022-07-02 22:53:16
...

安装

直接Microsoft Store中搜索“Windows Terminal”就可以
安装Cascadia Code字体:https://github.com/microsoft/cascadia-code/releases
使用 PowerShell,安装工具:

# 安装工具posh-git oh-my-posh psreadline
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
Install-Module -Name PSReadLine -Scope CurrentUser -Force -SkipPublisherCheck

创建powershell配置脚本

if (!(Test-Path -Path $PROFILE)) {
  New-Item -ItemType File -Path $PROFILE -Force
}

在 PowerShell 配置文件($PROFILE)中,将以下内容添加到文件的末尾:

Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox

修改ps脚本运行权限

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

修改Windows Terminal的配置文件settings.json
添加 "fontFace": "Cascadia Code PL"

{
    // Make changes here to the powershell.exe profile.
    "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
    "name": "Windows PowerShell",
    "commandline": "powershell.exe",
    "fontFace": "Cascadia Code PL",
    "hidden": false
},
相关标签: windows terminal