Created
August 24, 2020 21:30
-
-
Save zenojunior/a3a579e3ad9357f14982bd82f43f80d8 to your computer and use it in GitHub Desktop.
Windows Terminal Settings
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"theme": "dark", | |
"defaultProfile": "{90cbdc15-f4fe-49d2-a245-ec066b70845f}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"tabWidthMode": "titleLength", | |
"showTabsInTitlebar": false, | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"colorScheme" : "Dracula", | |
"fontFace": "Fira Code", | |
"padding": "15, 0, 15, 8", | |
"fontSize": 11 | |
}, | |
"list": | |
[ | |
{ | |
"commandline" : "D:\\Arquivos de Programas\\Power Shell\\7-preview\\pwsh.exe", | |
"fontFace" : "Cascadia Code PL", | |
"guid" : "{90cbdc15-f4fe-49d2-a245-ec066b70845f}", | |
"icon" : "D:\\Arquivos de Programas\\Power Shell\\7-preview\\assets\\Powershell_av_colors.ico", | |
"name" : "PowerShell 7 Beta", | |
"startingDirectory" : "D:\\Dev", | |
"hidden": false, | |
"tabTitle": "PowerShell 7" | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"startingDirectory": "D:\\Dev" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Prompt de comando", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl", | |
"tabTitle": "WSL" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"name" : "Dracula", | |
"background" : "#272935", | |
"black" : "#21222C", | |
"blue" : "#BD93F9", | |
"cyan" : "#8BE9FD", | |
"foreground" : "#F8F8F2", | |
"green" : "#50FA7B", | |
"purple" : "#FF79C6", | |
"red" : "#FF5555", | |
"white" : "#F8F8F2", | |
"yellow" : "#FFB86C", | |
"brightBlack" : "#6272A4", | |
"brightBlue" : "#D6ACFF", | |
"brightCyan" : "#A4FFFF", | |
"brightGreen" : "#69FF94", | |
"brightPurple" : "#FF92DF", | |
"brightRed" : "#FF6E6E", | |
"brightWhite" : "#F8F8F2", | |
"brightYellow" : "#FFFFA5" | |
} | |
], | |
"keybindings": | |
[ | |
{ "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
{ "command": "paste", "keys": "ctrl+v" }, | |
{ "command": "find", "keys": "ctrl+f" }, | |
{ "command": { "action": "newTab", "index": 0 }, "keys": "ctrl+t" }, | |
{ "command": "closeTab", "keys": "ctrl+w" }, | |
{ "command": "newTab", "keys": "ctrl+shift+t" }, | |
{ "command": { "action": "switchToTab", "index": 0 }, "keys": "alt+1" }, | |
{ "command": { "action": "switchToTab", "index": 1 }, "keys": "alt+2" }, | |
{ "command": { "action": "switchToTab", "index": 2 }, "keys": "alt+3" }, | |
{ "command": { "action": "switchToTab", "index": 3 }, "keys": "alt+4" }, | |
{ "command": { "action": "switchToTab", "index": 4 }, "keys": "alt+5" }, | |
{ "command": { "action": "switchToTab", "index": 5 }, "keys": "alt+6" }, | |
{ "command": { "action": "switchToTab", "index": 6 }, "keys": "alt+7" }, | |
{ "command": { "action": "switchToTab", "index": 7 }, "keys": "alt+8" }, | |
{ "command": { "action": "switchToTab", "index": 8 }, "keys": "alt+9" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment