Last active
March 24, 2020 07:39
-
-
Save skadimoolam/40d8ebc4d513b47c774e60361bca74f2 to your computer and use it in GitHub Desktop.
Windows Terminal Configuration
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": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"requestedTheme" : "system", | |
"launchMode":"maximized", | |
"profiles": | |
{ | |
"defaults": { | |
"fontFace": "Fira Code", | |
"colorScheme" : "windows-console", | |
"fontSize": 10 | |
}, | |
"list": | |
[ | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure", | |
"hidden": true | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"name": "windows-console", | |
"black": "#0c0c0c", | |
"blue": "#0037da", | |
"green": "#13a10e", | |
"cyan": "#3a96dd", | |
"red": "#c50f1f", | |
"purple": "#881798", | |
"yellow": "#c19c00", | |
"white": "#cccccc", | |
"brightBlack": "#767676", | |
"brightBlue": "#3b78ff", | |
"brightGreen": "#16c60c", | |
"brightCyan": "#61d6d6", | |
"brightRed": "#e74856", | |
"brightPurple": "#b4009e", | |
"brightYellow": "#f9f1a5", | |
"brightWhite": "#f2f2f2" | |
} | |
], | |
"keybindings": [ | |
{ "command": "closePane", "keys": ["ctrl+w"] }, | |
{ "command": "copy", "keys": ["ctrl+c"] }, | |
{ "command": "paste", "keys": ["ctrl+v"] }, | |
{ "command": "newTab", "keys": ["ctrl+t"] }, | |
{ "command": { "action": "splitPane", "split": "auto", "splitMode": "index" }, "keys": ["ctrl+d"]} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment