Windows Terminalの設定に関するメモです。

動作環境

Windows Terminal 0.11.1251.0 (Preview)

設定変更

[設定]メニューを開くか、または、[CTRL]+[,]を押して設定ファイル(settings.json)を編集する。

設定例

  • 全設定共通でフォントをSource Han Code JPに変更。
  • SSH接続を追加。(パスワードは指定できないみたい)
{
    "profiles":
    {
        "defaults":
        {
            // Put settings here that you want to apply to all profiles.
            "fontFace": "Source Han Code JP",
            "fontSize": 10
        },
        "list": [
        {
          // Make changes here to the powershell.exe profile.
          "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
          "name": "Windows PowerShell",
          "commandline": "powershell.exe",
          "hidden": false
        },
        {
          // Make changes here to the cmd.exe profile.
          "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
          "name": "コマンド プロンプト",
          "commandline": "cmd.exe",
          "hidden": false
        },
        {
          "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
          "hidden": false,
          "name": "Azure Cloud Shell",
          "source": "Windows.Terminal.Azure"
        },
        {
          // SSH
          "name": "テスト",
          "commandline": "ssh test@test.com"
        }
}

参考資料

前の記事 次の記事