windows terminal美化之显示icon
step1:安装Terminal-Icons
github地址:https://github.com/devblackops/Terminal-Icons
安装命令
PS> Install-Module -Name Terminal-Icons -Repository PSGallery
加入powershell自定义配置里面,实现启动terminal自动加载
notepad $profile
写入下面的内容
Import-Module -Name Terminal-Icons
step2:安装nerd font系列字体之一
下载地址:https://www.nerdfonts.com/font-downloads
我这里安装了:LiterationMono Nerd Font
选择该字体,下载解压,全选右击安装即可。
step3: 配置windows terminal字体选项
{
"backgroundImage": "C:\\Users\\xxx\\Pictures\\Saved Pictures\\terminal.jpg",
"colorScheme": "One Half Dark",
"fontFace": "LiterationMono Nerd Font",
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell",
"source": "Windows.Terminal.PowershellCore",
"startingDirectory": "D:/GoCode"
},
step4:配置vscode字体选项
添加字体选项在json文件中
"terminal.integrated.fontFamily": "LiterationMono Nerd Font",
最后显示效果: