Пробуем Windows Настройка терминала через настройки. json. Я нашел профили. json, которые достаточно точно соответствуют новым соглашениям, чтобы работать при вставке в настройки. json, (я знаю, что это произошло, потому что тема изменилась). Проблема в том, что изменения в «fontFace» не имеют никакого эффекта. Я пытаюсь использовать шрифт ботаника для некоторых вещей в Powerline, работает в Powershell, работающем в ConEmu, но не в Windows Terminal. Вот соответствующая часть настроек. json:
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
// You can add more global application settings here.
// To learn more about global settings, visit https://aka.ms/terminal-global-settings
// If enabled, selections are automatically copied to your clipboard.
"copyOnSelect": false,
// If enabled, formatted data is also copied to your clipboard
"copyFormatting": false,
// A profile specifies a command to execute paired with information about how it should look and feel.
// Each one of them will appear in the 'New Tab' dropdown,
// and can be invoked from the commandline with `wt.exe -p xxx`
// To learn more about profiles, visit https://aka.ms/terminal-profile-settings
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles.
"cursorShape": "vintage",
"fontFace": "Iosevka Nerd Font"
},
"list":
[
{
// Make changes here to the powershell.exe profile.
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"fontFace": "Iosevka Nerd Font",
"colorScheme": "PowerShellTom",
"useAcrylic": true,
"acrylicOpacity": 0.8
},
{ ...
Я получаю такое же поведение в Windows Terminal Preview, который, как предполагается, является наименее «передовой» версией.
Даже попытка использовать не-ботанические шрифты для «fontFace» не даст никакого эффекта, однако «fontSize» будет работать.