Skip to content

Instantly share code, notes, and snippets.

@bgshacklett
Created February 12, 2021 13:57
Show Gist options
  • Save bgshacklett/ec52653cd008073ea18081fdf8dc87f6 to your computer and use it in GitHub Desktop.
Save bgshacklett/ec52653cd008073ea18081fdf8dc87f6 to your computer and use it in GitHub Desktop.
Windows Terminal
// 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": "{dba43f41-44c5-4686-8615-6d4bf260f608}",
"profiles":
[
{
// Make changes here to the pwsh.exe profile
"guid": "{dba43f41-44c5-4686-8615-6d4bf260f608}",
"name": "PowerShell Core",
"commandline": "C:/Users/brian/scoop/apps/pwsh/current/pwsh.exe",
"startingDirectory": "~",
"hidden": false,
"fontFace": "JetBrains Mono NF",
"fontSize": 16
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
"hidden": false,
"name": "Ubuntu-20.04",
"source": "Windows.Terminal.Wsl"
}
],
// Add custom color schemes to this array
"schemes": [],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings":
[
{ "command": { "action":"splitPane", "split": "vertical" }, "keys": [ "ctrl+shift+e" ] },
{ "command": { "action": "splitPane", "split": "horizontal" }, "keys": [ "ctrl+shift+o" ] },
{ "command": { "action": "moveFocus", "direction": "left" }, "keys": [ "ctrl+shift+h" ] },
{ "command": { "action": "moveFocus", "direction": "down" }, "keys": [ "ctrl+shift+j" ] },
{ "command": { "action": "moveFocus", "direction": "up" }, "keys": [ "ctrl+shift+k" ] },
{ "command": { "action": "moveFocus", "direction": "right" }, "keys": [ "ctrl+shift+l" ] },
{ "command": { "action": "resizePane", "direction": "left" }, "keys": [ "alt+shift+h" ] },
{ "command": { "action": "resizePane", "direction": "down" }, "keys": [ "alt+shift+j" ] },
{ "command": { "action": "resizePane", "direction": "up" }, "keys": [ "alt+shift+k" ] },
{ "command": { "action": "resizePane", "direction": "right" }, "keys": [ "alt+shift+l" ] }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment