Skip to content

Instantly share code, notes, and snippets.

@disjukr
Last active July 18, 2020 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save disjukr/b96b6a7e12ac5910ba0c974e3176ec54 to your computer and use it in GitHub Desktop.
Save disjukr/b96b6a7e12ac5910ba0c974e3176ec54 to your computer and use it in GitHub Desktop.
windows-terminal settings
// https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{75def201-4efb-5e32-93a0-c5647120c025}",
"copyOnSelect": false,
"copyFormatting": false,
"profiles": {
"defaults": {
"colorScheme": "Dark Plus"
},
"list": [
{
"guid": "{75def201-4efb-5e32-93a0-c5647120c025}",
"hidden": false,
"name": "wsl",
"source": "Windows.Terminal.Wsl"
},
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "powershell",
"commandline": "powershell.exe",
"hidden": false
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "azure",
"source": "Windows.Terminal.Azure"
}
]
},
"schemes": [
{
"name": "Dark Plus",
"background": "#1E1E1E",
"foreground": "#D4D4D4",
"brightBlack": "#666666",
"brightBlue": "#569cd6",
"brightCyan": "#9cdcfe",
"brightGreen": "#b5cea8",
"brightPurple": "#daadd6",
"brightRed": "#f14c4c",
"brightWhite": "#e5e5e5",
"brightYellow": "#DCDCAA",
"black": "#000000",
"blue": "#2472c8",
"cyan": "#11a8cd",
"green": "#6a9955",
"purple": "#C586C0",
"red": "#cd3131",
"white": "#e5e5e5",
"yellow": "#CE9178"
}
],
"keybindings": [
{ "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
{ "command": "paste", "keys": "ctrl+v" },
{ "command": "find", "keys": "ctrl+shift+f" },
{ "command": { "action": "splitPane", "split": "vertical", "splitMode": "duplicate" }, "keys": "ctrl+\\" },
{ "command": { "action": "splitPane", "split": "horizontal", "splitMode": "duplicate" }, "keys": "ctrl+shift+\\" },
{ "command": { "action": "newTab", "index": 0 }, "keys": "ctrl+t" },
{ "command": { "action": "closeTab", "index": 0 }, "keys": "ctrl+w" },
{ "command": { "action": "moveFocus", "direction": "down" }, "keys": "ctrl+down" },
{ "command": { "action": "moveFocus", "direction": "left" }, "keys": "ctrl+left" },
{ "command": { "action": "moveFocus", "direction": "right" }, "keys": "ctrl+right" },
{ "command": { "action": "moveFocus", "direction": "up" }, "keys": "ctrl+up" },
{ "command": { "action": "prevTab" }, "keys": "ctrl+pageup" },
{ "command": { "action": "nextTab" }, "keys": "ctrl+pagedown" }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment