Powershell + windows Terminal最简单

2021-10-31  本文已影响0人  学着放下

网上一大堆美化教程,啰里啰唆,还讲不清,并且一堆错误

第一步安装模块

powershell 管理员身份运行,并执行以下。

##允许执行脚本
set-executionpolicy remotesigned
Install-module PSReadline
Install-Module posh-git
Install-Module oh-my-posh
Install-Module DirColors

第二步 导入模块

Import-Module PSReadline
Import-Module DirColors
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme powerLine

但此时,只应用到当前,下次打开还是老样子,这样,我们就给加个配置文件

第三步 配置

首先记事本打开
notepad $profile
接着输入如下内容并保存

Import-Module PSReadline
Import-Module DirColors
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme powerLine

第四步 安装个好看的字体

安装字体是必须的,否则可能出现乱码。这里既然用的Theme powerLine,那我们就下powerLine字体
powerline/fonts: Patched fonts for Powerline users. (github.com)
下载以后,找到DejaVu Sans Mono for Powerline.ttf安装
并在windows terminal设置里设置好该字体

i字体设置

第五步 给windows terminal选个合适的配色

在Terminal的配置json文件中插入
"colorScheme": "One Half Dark",

image.png

我的成品


image.png
上一篇下一篇

猜你喜欢

热点阅读