Skip to content

Instantly share code, notes, and snippets.

@kpietralik
Created May 17, 2020 10:51
Show Gist options
  • Select an option

  • Save kpietralik/fe7d7a135fbc9f3123f9e67779d36a24 to your computer and use it in GitHub Desktop.

Select an option

Save kpietralik/fe7d7a135fbc9f3123f9e67779d36a24 to your computer and use it in GitHub Desktop.
Windows Terminal settings
// 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}",
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles
},
"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": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{47068bca-ad4f-4e1d-a34c-870133fc6c25}",
"hidden": false,
"name": "Anaconda (ps)",
"commandline": "%windir%/System32/WindowsPowerShell/v1.0/powershell.exe -ExecutionPolicy ByPass -NoExit -Command \"& 'C:/tools/Anaconda3/shell/condabin/conda-hook.ps1' ; conda activate 'C:/tools/Anaconda3' \"",
"icon": "%SystemDrive%/tools/Anaconda3/Menu/Iconleak-Atrous-PSConsole.ico",
"startingDirectory": "%HOMEPATH%"
},
{
"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"
},
{
"guid": "{be7b3574-6a77-496c-95e6-576eab222f53}",
"hidden": false,
"name": "Docker Quickstart",
"commandLine": "C://Program Files//Git//bin//bash.exe --login -i \"C://Program Files//Docker Toolbox//start.sh\"",
"icon": "C://Program Files//Docker Toolbox//docker-quickstart-terminal.ico",
"startingDirectory": "C://Program Files//Docker Toolbox"
}
]
},
// Add custom color schemes to this array
"schemes": [
{
"name" : "UbuntuLegit",
"background" : "#2C001E",
"black" : "#4E9A06",
"blue" : "#3465A4",
"brightBlack" : "#555753",
"brightBlue" : "#729FCF",
"brightCyan" : "#34E2E2",
"brightGreen" : "#8AE234",
"brightPurple" : "#AD7FA8",
"brightRed" : "#EF2929",
"brightWhite" : "#EEEEEE",
"brightYellow" : "#FCE94F",
"cyan" : "#06989A",
"foreground" : "#EEEEEE",
"green" : "#300A24",
"purple" : "#75507B",
"red" : "#CC0000",
"white" : "#D3D7CF",
"yellow" : "#C4A000"
},
{
"name" : "VSCode",
"background" : "#232323",
"black" : "#000000",
"blue" : "#579BD5",
"brightBlack" : "#797979",
"brightBlue" : "#9BDBFE",
"brightCyan" : "#2BC4E2",
"brightGreen" : "#1AD69C",
"brightPurple" : "#DF89DD",
"brightRed" : "#F6645D",
"brightWhite" : "#EAEAEA",
"brightYellow" : "#F6F353",
"cyan" : "#00B6D6",
"foreground" : "#D3D3D3",
"green" : "#3FC48A",
"purple" : "#CA5BC8",
"red" : "#D8473F",
"white" : "#EAEAEA",
"yellow" : "#D7BA7D"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{ "command": "closeWindow", "keys": ["alt+f4"] },
{ "command": "splitHorizontal", "keys": ["ctrl+-"]},
{ "command": "splitVertical", "keys": ["ctrl+\\"]}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment