Last active
December 10, 2020 15:54
-
-
Save pezcode/fc44cfa920b18757669d8ce8d5bf4679 to your computer and use it in GitHub Desktop.
Windows Terminal config (1.4.3243.0)
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": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"disabledProfileSources": | |
[ | |
"Windows.Terminal.Azure" | |
], | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"colorScheme": "Dracula", | |
// Powerline font required, not bundled with Windows Terminal | |
// https://github.com/microsoft/cascadia-code/releases | |
"fontFace": "Cascadia Code PL", | |
"fontSize": 10, | |
//"fontFace": "Consolas", | |
//"fontSize": 11, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.85 | |
}, | |
"list": | |
[ | |
{ | |
// Make changes here to the pwsh.exe profile | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"name": "PowerShell Core", | |
"commandline": "pwsh.exe -NoLogo", | |
"source": "Windows.Terminal.PowershellCore" | |
}, | |
{ | |
// Make changes here to the powershell.exe profile | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe -NoLogo" | |
}, | |
{ | |
// Make changes here to the nu.exe profile | |
"guid": "{3fd7cef0-da5b-44e3-b8e4-5dab08c1fd63}", | |
"name": "Nushell", | |
"commandline": "nu.exe" | |
}, | |
{ | |
// Make changes here to the cmd.exe profile | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe" | |
}, | |
{ | |
// Make changes here to the vcvars64.bat profile | |
"guid": "{e3a47709-34af-42d1-99e6-a853e8cae0a8}", | |
"name": "VS 2019", | |
"commandline": "cmd.exe /k \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat\"", | |
"icon": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\Assets\\VisualStudio.70x70.contrast-standard_scale-100.png", | |
}, | |
{ | |
// Make changes here to the anaconda profile | |
"guid": "{03841591-40cb-48ce-85f2-d62dd2d4d30b}", | |
"name": "Anaconda", | |
"commandline": "cmd.exe /k \"%USERPROFILE%\\miniconda3\\Scripts\\activate.bat\"", | |
"icon": "%USERPROFILE%\\miniconda3\\Menu\\Iconleak-Atrous-Console.ico" | |
}, | |
{ | |
// Make changes here to the wsl.exe profile | |
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"name": "Ubuntu 20.04", | |
"commandline": "wsl.exe --distribution Ubuntu-20.04", | |
"source": "Windows.Terminal.Wsl", | |
"startingDirectory": "//wsl$/Ubuntu-20.04/home/user" | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"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" | |
} | |
], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": | |
[ | |
{ "command": "find", "keys": "ctrl+f" }, | |
{ "command": "duplicateTab", "keys": "ctrl+d" }, | |
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
{ "command": "paste", "keys": "ctrl+v" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment