https://www.microsoft.com/ja-jp/p/windows-terminal-preview/9n0dx20hk701
下矢印みたいなのを押して「設定」
Ctrl+Tab / Shift+Ctrl+Tab
変更したい場合、keybindings
で以下のようにする(例えばiTerm風)
{ "command": "nextTab", "keys": "alt+shift+]" },
{ "command": "prevTab", "keys": "alt+shift+[" },
defaultProfile
を Ubuntu の guid
で書き換えると、それが最初に起動します。
profiles
defaults
に以下を設定します。
- フォント種類 :
fontFace
- フォントサイズ :
fontSize
"profiles": {
"defaults": {
// Put settings here that you want to apply to all profiles.
"cursorShape": "filledBox",
"fontFace": "Myrica M",
"fontSize": 14,
"colorScheme": "Dracula"
},
適当にぐぐって探すといいです。とりあえず Dracula を入れてます。
ルートに initialCols
initialRows
を設定すると適用されます。
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{...}",
"initialCols": 200,
"initialRows": 65,
}