Last active
November 16, 2020 06:37
-
-
Save ramidem/37697b05c5f7c8471d4f2662dbf3e829 to your computer and use it in GitHub Desktop.
WSL 2 Profiles JSON file
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"showTabsInTitlebar": false, | |
"alwaysShowTabs": false, | |
"largePasteWarning": false, | |
"profiles": { | |
"defaults": {}, | |
"list": [ | |
{ | |
// 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": "Command Prompt", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
}, | |
{ | |
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"hidden": false, | |
"name": "Ubuntu-20.04", | |
"source": "Windows.Terminal.Wsl", | |
"fontSize": 10, | |
"commandline": "wsl.exe ~", | |
"padding": "0,0,0,0", | |
"scrollbarState": "hidden", | |
"background": "#282828", | |
"cursorShape": "bar" | |
} | |
] | |
}, | |
"schemes": [], | |
"keybindings": [ | |
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
{ "command": "paste", "keys": "ctrl+v" }, | |
{ "command": "find", "keys": "ctrl+shift+f" }, | |
{ | |
"command": { | |
"action": "splitPane", | |
"split": "auto", | |
"splitMode": "duplicate" | |
}, | |
"keys": "alt+shift+d" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment