Last active
January 8, 2020 04:57
-
-
Save ay65535/331a1146a1bd929bff79911f37bc54a8 to your computer and use it in GitHub Desktop.
WindowsTerminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 cmd.exe profile | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"colorScheme": "Vintage", | |
"hidden": false, | |
"fontSize": 12 | |
}, | |
{ | |
// Make changes here to the powershell.exe profile | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"colorScheme": "Campbell Powershell", | |
"hidden": false, | |
"fontFace": "Cascadia Code", | |
"fontSize": 10, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.75, | |
"scrollbarState": "hidden" | |
}, | |
{ | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell Core", | |
"colorScheme": "Campbell", | |
"source": "Windows.Terminal.PowershellCore", | |
"fontFace": "Cascadia Code", | |
"fontSize": 10, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.75 | |
}, | |
{ | |
"guid": "{DAEF395D-6A7E-4EAA-8951-4F605ECCD249}", | |
"hidden": false, | |
"name": "Git Bash", | |
"colorScheme": "Campbell", | |
"commandline": "C:/msys64/usr/bin/bash.exe --login -i", | |
"startingDirectory": "%UserProfile%", | |
"fontSize": 11, | |
"useAcrylic": false | |
}, | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"colorScheme": "One Half Dark", | |
"source": "Windows.Terminal.Wsl", | |
"fontFace": "Cascadia Code", | |
"fontSize": 10, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.75 | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
}, | |
{ | |
"guid": "{d8afdc0e-a636-5b68-89dd-50a9d0b54349}", | |
"hidden": false, | |
"name": "docker-desktop-data", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{570fcb8d-792c-5ac7-ab1f-5cfb2cdfdb99}", | |
"hidden": false, | |
"name": "docker-desktop", | |
"source": "Windows.Terminal.Wsl" | |
} | |
], | |
// Add custom color schemes to this array | |
"schemes": [], | |
"copyOnSelect" :true, | |
"initialCols": 160, | |
"initialRows": 48, | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{"command": "copyTextWithoutNewlines", "keys": ["ctrl+shift+c"]}, | |
// { "command": "copy", "keys": ["ctrl+shift+c"] }, | |
{ "command": "paste", "keys": ["ctrl+shift+v"] } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment