2020年7月6日月曜日

Windows Terminal + Git-Bash

Windows Terminal で Git Bash を表示する
【備忘】VscodeやWindows Terminal で Git Bash を使うとなんか表示がちがって困った

1. PowerShell を起動してGUIDを取得する。
PS > [guid]::NewGuid()
Guid
3a4cf371-4a5e-4ce4-a75a-ce3069ea551a

2. Windows Terminal を起動し、[ Settings ] から profiles.json を開く。

3. "profiles" : [ { ... } ] の末尾に以下のオブジェクトを追記して保存する。
-----
{
                "guid" : "{3a4cf371-4a5e-4ce4-a75a-ce3069ea551a}",
                "hidden": false,
                "name": "Git-Bash",
                "closeOnExit" : true,
                "colorScheme" : "Campbell",
                "commandline" : "C:\\Program Files\\Git\\bin\\bash.exe --login -i",
                "cursorColor" : "#FFFFFF",
                "cursorShape" : "bar",
                "fontFace" : "consolas",
                // defaultsでフォントを設定しているが、ここでも指定しないと変
                "fontFace": "HackGen Console",
                "fontSize": 12,
                "historySize" : 9001,
                "icon" : "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico",
                "padding" : "0, 0, 0, 0",
                "snapOnInput" : true,
                "startingDirectory" : "%USERPROFILE%",
                "useAcrylic" : false
            }
------

.barhrcに追加
-----
.....
export LANG=ja_JP.UTF-8
-----

完成


0 コメント: