Created
May 19, 2020 11:14
-
-
Save rahulkmr/a277645d4243c5940b22d410eb845c05 to your computer and use it in GitHub Desktop.
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": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"profiles": { | |
"defaults": { | |
// Put settings here that you want to apply to all profiles | |
"colorScheme": "base16-default-dark", | |
"fontFace": "Cascadia Code PL", | |
"fontSize": 10, | |
"historySize": 10000, | |
"copyOnSelect": true, | |
"requestedTheme": "dark" | |
}, | |
"list": [ | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl", | |
"startingDirectory": "//wsl$/Ubuntu/home/rahul" | |
}, | |
{ | |
// 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": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"schemes": [ | |
{ | |
"name": "base16-default-dark", | |
"background": "#181818", | |
"selectionBackground": "#383838", | |
"black": "#181818", | |
"blue": "#7cafc2", | |
"brightBlack": "#585858", | |
"brightBlue": "#7cafc2", | |
"brightCyan": "#86c1b9", | |
"brightGreen": "#a1b56c", | |
"brightPurple": "#ba8baf", | |
"brightRed": "#ab4642", | |
"brightWhite": "#f8f8f8", | |
"brightYellow": "#f7ca88", | |
"cyan": "#86c1b9", | |
"foreground": "#d8d8d8", | |
"green": "#a1b56c", | |
"purple": "#ba8baf", | |
"red": "#ab4642", | |
"white": "#d8d8d8", | |
"yellow": "#f7ca88" | |
} | |
], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{ | |
"command": { "action": "switchToTab", "index": 0 }, | |
"keys": "ctrl+1" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 1 }, | |
"keys": "ctrl+2" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 2 }, | |
"keys": "ctrl+3" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 3 }, | |
"keys": "ctrl+4" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 4 }, | |
"keys": "ctrl+5" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 5 }, | |
"keys": "ctrl+6" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 6 }, | |
"keys": "ctrl+7" | |
}, | |
{ | |
"command": { "action": "switchToTab", "index": 7 }, | |
"keys": "ctrl+8" | |
}, | |
{ "command": { "action": "switchToTab", "index": 8 }, "keys": "ctrl+9" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment