win term cfg

// This file was initially generated by Windows Terminal Preview 1.2.2022.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.

// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
    "$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": true,

    // 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.
            "fontFace": "Sarasa Mono SC", //字体
            //"fontFace":"Cascadia Code PL", //字体
            "fontSize": 14, //文字大小
            "colorScheme": "Monokai Seti Dark", //主题
            "cursorColor": "#00FF00", //光标颜色
            "cursorShape": "filledBox", //光标形状
        },
        "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": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
                "hidden": false,
                "name": "PowerShell",
                "source": "Windows.Terminal.PowershellCore"
            },
            {
                "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
                "hidden": false,
                "name": "Azure Cloud Shell",
                "source": "Windows.Terminal.Azure"
            }
        ]
    },

    // Add custom color schemes to this array.
    // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes
    "schemes": [
        {
        "name": "Monokai Seti Dark",
        "foreground": "#F8F8F2",
        "background": "#151718",
        "black": "#151718",
        "brightBlack": "#625e4c",
        "blue": "#9D65FF",
        "brightBlue": "#9D65FF",
        "cyan": "#58D1EB",
        "brightCyan": "#58D1EB",
        "green": "#98F424",
        "brightGreen": "#98F424",
        "purple": "#F4005F",
        "brightPurple": "#F4005F",
        "red": "#F4005F",
        "brightRed": "#F4005F",
        "white": "#F8F8F2",
        "brightWhite": "#f6f6ef",
        "yellow": "#FA8419",
        "brightYellow": "#FA8419"
        },
        {
            "name": "Builtin Solarized Dark",
            "black": "#073642",
            "red": "#dc322f",
            "green": "#859900",
            "yellow": "#b58900",
            "blue": "#268bd2",
            "purple": "#d33682",
            "cyan": "#2aa198",
            "white": "#eee8d5",
            "brightBlack": "#002b36",
            "brightRed": "#cb4b16",
            "brightGreen": "#586e75",
            "brightYellow": "#657b83",
            "brightBlue": "#839496",
            "brightPurple": "#6c71c4",
            "brightCyan": "#93a1a1",
            "brightWhite": "#fdf6e3",
            "background": "#002b36",
            "foreground": "#839496"
        }
    ],

    // Add custom keybindings to this array.
    // To unbind a key combination from your defaults.json, set the command to "unbound".
    // To learn more about keybindings, visit https://aka.ms/terminal-keybindings
    "keybindings":
    [
        // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json.
        // These two lines additionally bind them to Ctrl+C and Ctrl+V.
        // To learn more about selection, visit https://aka.ms/terminal-selection
        { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
        { "command": "paste", "keys": "ctrl+v" },

        // Press Ctrl+Shift+F to open the search box
        { "command": "find", "keys": "ctrl+f" },

        { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" },
        { "command": { "action": "splitPane", "split": "vertical" }, "keys": "ctrl+alt+\" },
        { "command": { "action": "splitPane", "split": "horizontal" }, "keys": "ctrl+alt+-" },
        { "command": "closePane", "keys": "ctrl+w" },
        { "command": { "action": "newTab", "index": 2 }, "keys": "ctrl+n" },
        { "command": "toggleFullscreen", "keys": "f11" },

        { "command": "scrollDown", "keys": "ctrl+e" },
        { "command": "scrollUp", "keys": "ctrl+y" },
        { "command": "scrollUpPage", "keys": "ctrl+u" },
        { "command": "scrollDownPage", "keys": "ctrl+d" },

        { "command": { "action": "adjustFontSize", "delta": 1 }, "keys": "ctrl+=" },
        { "command": { "action": "adjustFontSize", "delta": -1 }, "keys": "ctrl+-" },
        { "command": "resetFontSize", "keys": "ctrl+0" },
    ]
}

原文地址:https://www.cnblogs.com/Searchor/p/13963898.html