Skip to content

Instantly share code, notes, and snippets.

@jaybo
Last active May 21, 2020 20:38
Show Gist options
  • Save jaybo/4b29dde114d501da23742c021c3e44af to your computer and use it in GitHub Desktop.
Save jaybo/4b29dde114d501da23742c021c3e44af to your computer and use it in GitHub Desktop.
Microsoft Terminal setup
// 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-afceeeaa6103}",
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles
},
"list": [
{
"commandline": "cmd /K C:/Python3.6/Scripts/activate.bat C:/Python3.6",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6103}",
"historySize": 9001,
"icon": "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"name": "Python3",
"startingDirectory": "c:/dev",
"hidden": false,
"colorScheme": "One Half Dark"
},
{
"commandline": "cmd /K C:/Python3.6/Scripts/activate.bat C:/Python3.6",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6144}",
"historySize": 9001,
"icon": "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"name": "dzweb",
"startingDirectory": "d:/devGit/dzweb",
"hidden": false,
"colorScheme": "One Half Dark"
},
{
"commandline": "cmd /K \"C://Program Files (x86)//Microsoft Visual Studio//2019//Community//VC//Auxiliary//Build//vcvarsall.bat\" x64",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6102}",
"historySize": 9001,
"icon": "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"name": "VS2019",
"startingDirectory": "c:/dev"
},
{
// 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",
"hidden": false
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"colorScheme": "Campbell"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b7}",
"hidden": false,
"name": "mongod",
"commandline": "C:\\Program Files\\MongoDB\\Server\\4.2\\bin\\mongod.exe"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b9}",
"hidden": false,
"name": "mongo",
"commandline": "C:\\Program Files\\MongoDB\\Server\\4.2\\bin\\mongo.exe"
}
]
},
// Add custom color schemes to this array
"schemes": [
{
"background" : "#2C001E",
"black" : "#4E9A06",
"blue" : "#3465A4",
"brightBlack" : "#555753",
"brightBlue" : "#729FCF",
"brightCyan" : "#34E2E2",
"brightGreen" : "#8AE234",
"brightPurple" : "#AD7FA8",
"brightRed" : "#EF2929",
"brightWhite" : "#EEEEEE",
"brightYellow" : "#FCE94F",
"cyan" : "#06989A",
"foreground" : "#EEEEEE",
"green" : "#300A24",
"name" : "UbuntuLegit",
"purple" : "#75507B",
"red" : "#CC0000",
"white" : "#D3D7CF",
"yellow" : "#C4A000"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{ "command": "closeWindow", "keys": ["alt+f4"] },
{ "command": "splitHorizontal", "keys": ["ctrl+-"]},
{ "command": "splitVertical", "keys": ["ctrl+\\"]}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment