Skip to content

Instantly share code, notes, and snippets.

@avtar
Created March 21, 2020 18:02
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 avtar/496160efb221fd30206bacb567d61aed to your computer and use it in GitHub Desktop.
Save avtar/496160efb221fd30206bacb567d61aed 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": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"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,
"fontFace" : "Cascadia Code",
"fontSize" : 15
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
"fontFace" : "Cascadia Code",
"fontSize" : 15
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure",
"fontFace" : "Cascadia Code",
"fontSize" : 15,
"hidden": true
},
{
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"hidden": false,
"name": "Ubuntu-18.04",
"source": "Windows.Terminal.Wsl",
"fontFace" : "Cascadia Code",
"fontSize" : 15,
"colorScheme": "Molokai"
}
]
},
// Add custom color schemes to this array
"schemes": [
{
"name": "Molokai",
"black": "#121212",
"red": "#fa2573",
"green": "#98e123",
"yellow": "#dfd460",
"blue": "#1080d0",
"purple": "#8700ff",
"cyan": "#43a8d0",
"white": "#bbbbbb",
"brightBlack": "#555555",
"brightRed": "#f6669d",
"brightGreen": "#b1e05f",
"brightYellow": "#fff26d",
"brightBlue": "#00afff",
"brightPurple": "#af87ff",
"brightCyan": "#51ceff",
"brightWhite": "#ffffff",
"background": "#121212",
"foreground": "#bbbbbb"
},
{
"name": "Monokai Remastered",
"black": "#1a1a1a",
"red": "#f4005f",
"green": "#98e024",
"yellow": "#fd971f",
"blue": "#9d65ff",
"purple": "#f4005f",
"cyan": "#58d1eb",
"white": "#c4c5b5",
"brightBlack": "#625e4c",
"brightRed": "#f4005f",
"brightGreen": "#98e024",
"brightYellow": "#e0d561",
"brightBlue": "#9d65ff",
"brightPurple": "#f4005f",
"brightCyan": "#58d1eb",
"brightWhite": "#f6f6ef",
"background": "#0c0c0c",
"foreground": "#d9d9d9"
}
],
// 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