Last active
May 1, 2021 10:03
-
-
Save kkbruce/de4698a3eaf68d5ede16bc5280a8be5a to your computer and use it in GitHub Desktop.
Windows Terminal profiles.json backup
This file contains hidden or 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": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| "profiles": { | |
| "defaults": { | |
| "fontFace": "Fira Code", | |
| "startingDirectory": "c://", | |
| "colorScheme": "Solarized Dark" | |
| }, | |
| "list": [ | |
| { | |
| "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "name": "Windows PowerShell", | |
| "commandline": "powershell.exe", | |
| "hidden": false, | |
| "fontFace": "Cascadia Mono PL" | |
| }, | |
| { | |
| // https://github.com/microsoft/terminal/issues/632#issuecomment-582782751 | |
| "guid": "{41dd7a51-f0e1-4420-a2ec-1a7130b7e950}", | |
| "name": "Windows PowerShell Elevated", | |
| "commandline": "gsudo.exe powershell.exe", | |
| "hidden": false, | |
| "fontFace": "Cascadia Mono PL", | |
| "icon" : "D://Downloads//PowerShell_5.0_icon.png" | |
| }, | |
| { | |
| "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
| "name": "cmd", | |
| "commandline": "cmd.exe", | |
| "hidden": false | |
| }, | |
| { | |
| "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| "hidden": false, | |
| "name": "PowerShell Core", | |
| "source": "Windows.Terminal.PowershellCore" | |
| }, | |
| { | |
| // https://github.com/microsoft/terminal/issues/632#issuecomment-582782751 | |
| "guid": "{2d90859e-c50b-43b8-a19b-a7451dbf26e0}", | |
| "hidden": false, | |
| "name": "PowerShell Core Elevated", | |
| "commandline": "gsudo.exe pwsh", | |
| "icon" : "D://Downloads//PowerShell_Core_6.0_icon.png" | |
| }, | |
| { | |
| "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "hidden": false, | |
| "name": "Ubuntu", | |
| "source": "Windows.Terminal.Wsl", | |
| "fontFace": "Ubuntu Mono derivative Powerline" | |
| }, | |
| { | |
| "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
| "hidden": false, | |
| "name": "Azure Cloud Shell", | |
| "source": "Windows.Terminal.Azure" | |
| }, | |
| { | |
| "guid": "{9a64ba5d-0cdb-45a5-b78d-33c9e9bf6dd8}", | |
| "name": "VS2019 Develop Command", | |
| "hidden": false, | |
| "commandline": "cmd.exe /k \"C://Program Files (x86)//Microsoft Visual Studio//2019//Enterprise//Common7//Tools//VsDevCmd.bat\"", | |
| "icon" : "D://Downloads//VSWinIcon_100x.png" | |
| } | |
| ] | |
| }, | |
| // Add custom color schemes to this array | |
| // more theme: https://terminalsplash.com | |
| "schemes": [ | |
| { | |
| // https://github.com/dracula/windows-terminal | |
| "name" : "Dracula", | |
| "background" : "#282A36", | |
| "black" : "#21222C", | |
| "blue" : "#BD93F9", | |
| "brightBlack" : "#6272A4", | |
| "brightBlue" : "#D6ACFF", | |
| "brightCyan" : "#A4FFFF", | |
| "brightGreen" : "#69FF94", | |
| "brightPurple" : "#FF92DF", | |
| "brightRed" : "#FF6E6E", | |
| "brightWhite" : "#FFFFFF", | |
| "brightYellow" : "#FFFFA5", | |
| "cyan" : "#8BE9FD", | |
| "foreground" : "#F8F8F2", | |
| "green" : "#50FA7B", | |
| "purple" : "#FF79C6", | |
| "red" : "#FF5555", | |
| "white" : "#F8F8F2", | |
| "yellow" : "#F1FA8C" | |
| } | |
| ], | |
| // Add any keybinding overrides to this array. | |
| // To unbind a default keybinding, set the command to "unbound" | |
| "keybindings": [ | |
| { "command": {"action": "splitPane", "split": "auto", "splitMode": "duplicate"}, "keys": ["ctrl+shift+d"]}, // https://devblogs.microsoft.com/commandline/windows-terminal-preview-v0-10-release/ | |
| { "command": "closeWindow", "keys": ["alt+f4"] }, | |
| //{ "command": "splitHorizontal", "keys": ["ctrl+shift+o"] }, // change to "ctrl+shift+d" | |
| //{ "command": "splitVertical", "keys": ["ctrl+shift+e"] }, // change to "ctrl+shift+d" | |
| { "command": "copy", "keys": ["enter"] }, // ctrl+c Unaccustomed, from Cmder | |
| { "command": "paste", "keys": ["ctrl+v"] }, | |
| { "command": "newTab", "keys": ["ctrl+t"] }, | |
| { "command": "closeTab", "keys": ["ctrl+w"] }, | |
| { "command": "find", "keys": ["ctrl+f"] } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment