Skip to content

Instantly share code, notes, and snippets.

@bc3tech
Created November 13, 2019 00:42
Show Gist options
  • Save bc3tech/73a7522e3868abdcbf4c63fc02eee086 to your computer and use it in GitHub Desktop.
Save bc3tech/73a7522e3868abdcbf4c63fc02eee086 to your computer and use it in GitHub Desktop.
Terminal profiles
// 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,
"useAcrylic": true,
"acrylicOpacity": 0.8,
"fontFace": "Cascadia Code"
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
"useAcrylic": true,
"acrylicOpacity": 0.8,
"fontFace": "Cascadia Code"
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"useAcrylic": true,
"acrylicOpacity": 0.8,
"fontFace": "Cascadia Code"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure",
"useAcrylic": true,
"acrylicOpacity": 0.8,
"fontFace": "Cascadia Code"
},
{
"guid": "{74915ee3-809f-45a0-87b1-d015a5b41c6d}",
"hidden": false,
"name": "VS2017 Dev Prompt",
"commandline": "%comspec% /k \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Enterprise\\Common7\\Tools\\VsDevCmd.bat\"",
"useAcrylic": true,
"acrylicOpacity": 0.8,
"fontFace": "Cascadia Code"
}
],
// Add custom color schemes to this array
"schemes": [
],
"alwaysShowTabs": true,
"copyOnSelect": true,
"showTabsInTitlebar": true,
"showTerminalTitleInTitlebar": true,
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{
"command": "copy",
"keys": [ "ctrl+c" ]
},
{
"command": "paste",
"keys": [ "ctrl+v" ]
}
],
"requestedTheme": "dark"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment