Skip to content

Instantly share code, notes, and snippets.

@nathonius
Last active February 27, 2020 14:58
Show Gist options
  • Save nathonius/102a85e727bcd25aa842d0476309e945 to your computer and use it in GitHub Desktop.
Save nathonius/102a85e727bcd25aa842d0476309e945 to your computer and use it in GitHub Desktop.
Full windows terminal config
// 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": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"profiles": [
{
// 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 /k C:\\DevTools\\cmder_mini\\vendor\\init.bat",
"hidden": false,
"colorScheme": "Alloy",
"startingDirectory": "C:\\devel",
"fontFace": "IBM Plex Mono Medium",
"fontSize": 11
},
{
"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"
}
],
// Add custom color schemes to this array
"schemes": [
{
"background": "#282828",
"black": "#333333",
"blue": "#919CC6",
"brightBlack": "#666666",
"brightBlue": "#B5C3FF",
"brightCyan": "#97E0EF",
"brightGreen": "#B5E25A",
"brightPurple": "#CEB5FF",
"brightRed": "#F95793",
"brightWhite": "#f7f7f7",
"brightYellow": "#E2E25A",
"cyan": "#7CB3BC",
"foreground": "#f7f7f7",
"green": "#93B54F",
"name": "Alloy",
"purple": "#A391C6",
"red": "#C44C76",
"white": "#e2e2e2",
"yellow": "#B5B54F"
},
{
"name": "BlulocoLight",
"black": "#cbccd5",
"red": "#c90e42",
"green": "#21883a",
"yellow": "#d54d17",
"blue": "#1e44dd",
"purple": "#6d1bed",
"cyan": "#1f4d7a",
"white": "#000000",
"brightBlack": "#dedfe8",
"brightRed": "#fc4a6d",
"brightGreen": "#34b354",
"brightYellow": "#b89427",
"brightBlue": "#1085d9",
"brightPurple": "#c00db3",
"brightCyan": "#5b80ad",
"brightWhite": "#1d1d22",
"background": "#f7f7f7",
"foreground": "#2a2c33"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{
"command": "newTab",
"keys": ["ctrl+t"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment