Skip to content

Instantly share code, notes, and snippets.

@akshaybharambe14
Created February 16, 2020 08:40
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 akshaybharambe14/c1f65ae049d5d313405ae0a05e591764 to your computer and use it in GitHub Desktop.
Save akshaybharambe14/c1f65ae049d5d313405ae0a05e591764 to your computer and use it in GitHub Desktop.
New Windows Terminal profile settings and key bindings.
// 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": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"profiles": [
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
// custom settings
"background": "#012456",
"historySize": 9001,
"snapOnInput": true,
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Fira Code",
"fontSize": 11,
"acrylicOpacity": 0.75,
"useAcrylic": true,
"closeOnExit": true
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
// custom settings
"historySize": 9001,
"snapOnInput": true,
"colorScheme": "Campbell",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Fira Code",
"fontSize": 11,
"acrylicOpacity": 0.5,
"useAcrylic": true,
"closeOnExit": true
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
// custom settings
"historySize": 9001,
"snapOnInput": true,
"cursorColor": "#FFFFFF",
"foreground": "#EEEEEC",
"background": "#2C001E",
"cursorShape": "bar",
// "commandline": "wsl.exe",
"fontFace": "Fira Code",
"fontSize": 11,
"acrylicOpacity": 0.5,
"useAcrylic": true,
"closeOnExit": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
],
// Add custom color schemes to this array
"schemes": [
{
"name": "Campbell",
"foreground": "#F2F2F2",
"background": "#0C0C0C"
},
{
"name": "Solarized Dark",
"foreground": "#FDF6E3",
"background": "#073642"
},
{
"name": "Solarized Light",
"foreground": "#073642",
"background": "#FDF6E3"
},
{
"name": "Ubuntu",
"foreground": "#EEEEEC",
"background": "#2C001E"
},
{
"name": "UbuntuLegit",
"foreground": "#EEEEEE",
"background": "#2C001E"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{
"command": "closeTab",
"keys": [
"ctrl+w"
]
},
{
"command": "newTab",
"keys": [
"ctrl+t"
]
},
{
"command": "newTabProfile0",
"keys": [
"ctrl+shift+1"
]
},
{
"command": "newTabProfile1",
"keys": [
"ctrl+shift+2"
]
},
{
"command": "newTabProfile2",
"keys": [
"ctrl+shift+3"
]
},
{
"command": "newTabProfile3",
"keys": [
"ctrl+shift+4"
]
},
{
"command": "newTabProfile4",
"keys": [
"ctrl+shift+5"
]
},
{
"command": "nextTab",
"keys": [
"ctrl+tab"
]
},
{
"command": "openSettings",
"keys": [
"ctrl+,"
]
},
{
"command": "prevTab",
"keys": [
"ctrl+shift+tab"
]
},
{
"command": "scrollDown",
"keys": [
"ctrl+shift+down"
]
},
{
"command": "scrollDownPage",
"keys": [
"ctrl+shift+pgdn"
]
},
{
"command": "scrollUp",
"keys": [
"ctrl+shift+up"
]
},
{
"command": "scrollUpPage",
"keys": [
"ctrl+shift+pgup"
]
},
{
"command": "switchToTab0",
"keys": [
"alt+1"
]
},
{
"command": "switchToTab1",
"keys": [
"alt+2"
]
},
{
"command": "switchToTab2",
"keys": [
"alt+3"
]
},
{
"command": "switchToTab3",
"keys": [
"alt+4"
]
},
{
"command": "switchToTab4",
"keys": [
"alt+5"
]
},
{
"command": "switchToTab5",
"keys": [
"alt+6"
]
},
{
"command": "switchToTab6",
"keys": [
"alt+7"
]
},
{
"command": "switchToTab7",
"keys": [
"alt+8"
]
},
{
"command": "switchToTab8",
"keys": [
"alt+9"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment