Skip to content

Instantly share code, notes, and snippets.

@nonylene
Created April 16, 2021 08:27
Show Gist options
  • Select an option

  • Save nonylene/04246ff52cae765c08d8ab9653c93d70 to your computer and use it in GitHub Desktop.

Select an option

Save nonylene/04246ff52cae765c08d8ab9653c93d70 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": "{wsl}",
"initialCols": 82,
"initialRows": 27,
"profiles": [
{
// Make changes here to the powershell.exe profile
"guid": "{powershell}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
},
{
// Make changes here to the cmd.exe profile
"guid": "{cmd}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{wsl}",
"hidden": false,
"name": "Ubuntu-18.04",
"source": "Windows.Terminal.Wsl",
// https://github.com/microsoft/terminal/issues/592
"commandline": "wsl.exe ~",
"cursorShape": "filledBox",
"cursorColor": "#f0f0f0",
"fontSize": 14,
"fontFace": "Consolas",
"colorScheme": "Symfonic",
"padding": "2, 0, 2, 0",
"scrollbarState": "hidden"
},
{
"guid": "{azure}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
],
// Add custom color schemes to this array
"schemes": [
{
// https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/windowsterminal/Symfonic.json
"name": "Symfonic",
"black": "#000000",
"red": "#dc322f",
"green": "#56db3a",
"yellow": "#ff8400",
"blue": "#0084d4",
"purple": "#b729d9",
"cyan": "#ccccff",
"white": "#ffffff",
"brightBlack": "#1b1d21",
"brightRed": "#dc322f",
"brightGreen": "#56db3a",
"brightYellow": "#ff8400",
"brightBlue": "#0084d4",
"brightPurple": "#b729d9",
"brightCyan": "#ccccff",
"brightWhite": "#ffffff",
"background": "#161616",
"foreground": "#f0f0f0"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment