Skip to content

Instantly share code, notes, and snippets.

@kzu
Last active July 22, 2020 06:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kzu/26804d6067eb3c8f19d4ac1228972472 to your computer and use it in GitHub Desktop.
Save kzu/26804d6067eb3c8f19d4ac1228972472 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": "{63661ee7-c8c4-434e-8579-f6112c77101f}",
"requestedTheme": "dark",
"profiles":
{
"defaults":
{
"useAcrylic" : false,
"acrylicOpacity" : 0.9,
"fontFace": "Cascadia Code PL",
"fontSize" : 10,
"startingDirectory" : "C:\\Code"
},
"list":
[
{
"guid": "{63e31163-583f-5850-9c1e-24e227dd2da9}",
"hidden": false,
"name": "PowerShell Core",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid" : "{63661ee7-c8c4-434e-8579-f6112c77101f}",
"name" : "Dev 2019",
"icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
"background" : "#012456",
"colorScheme" : "Campbell",
"commandline" : "powershell.exe -noe -c \"&{ $installDir='C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community'; Write-Host Using $installDir; Import-Module ($installDir + '\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll'); Enter-VsDevShell -VsInstallPath $installDir}; cd C:\\Code\\kzu \""
},
{
"colorScheme" : "Campbell",
"guid" : "{45c22bab-532e-4c8e-a911-4280f6bfa994}",
"icon" : "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"name" : "Dev 2019",
"commandline" : "%comspec% /k \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\Tools\\VsDevCmd.bat\""
},
{
"guid" : "{f4800591-a041-49b7-8a91-04307b672a8c}",
"name" : "Dev 2019 Preview",
"icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
"background" : "#012456",
"colorScheme" : "Campbell",
"commandline" : "powershell.exe -noe -c \"&{ $installDir='C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Preview'; Write-Host Using $installDir; Import-Module ($installDir + '\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll'); Enter-VsDevShell -VsInstallPath $installDir}; cd C:\\Code\\kzu \""
},
{
"colorScheme" : "Campbell",
"guid" : "{4597fb4c-b2c2-4e63-a90e-8d8fd7bf35b7}",
"icon" : "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"name" : "Dev 2019 Preview",
"commandline" : "%comspec% /k \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Preview\\Common7\\Tools\\VsDevCmd.bat\""
},
{
"colorScheme" : "Campbell",
"guid" : "{58077ca1-6c00-4718-9dee-abda5de70c72}",
"icon" : "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"name" : "Dev 2019 IntPreview",
"commandline" : "%comspec% /k \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\IntPreview\\Common7\\Tools\\VsDevCmd.bat\""
},
{
"guid" : "{d4eb952e-9be7-4e9a-af71-b6988bfdfbb8}",
"name" : "Dev 2019 IntPreview",
"icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
"background" : "#012456",
"colorScheme" : "Campbell",
"commandline" : "powershell.exe -noe -c \"&{ $installDir='C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\IntPreview'; Write-Host Using $installDir; Import-Module ($installDir + '\\Common7\\Tools\\Microsoft.VisualStudio.DevShell.dll'); Enter-VsDevShell -VsInstallPath $installDir}; cd C:\\Code\\kzu \""
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "Command Prompt",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "Windows PowerShell",
"source": "Windows.Terminal.PowershellCore"
}
]
},
// Add custom color schemes to this array
"schemes": [],
// 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"] },
{ "command" : "closeTab", "keys": ["ctrl+f4"] },
{ "command" : "newTab", "keys": ["ctrl+t"] }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment