Last active
October 27, 2020 14:00
-
-
Save outrowender/524aa04cd6c7181164a5451b1467f5bd to your computer and use it in GitHub Desktop.
Windows Terminal config
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", | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": { | |
"defaults": { | |
"colorScheme" : "Dracula", | |
"fontFace": "JetBrains Mono", | |
"fontSize": 10, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.7, | |
"cursorShape": "bar" | |
}, | |
"list": [ | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"hidden": false, | |
"name": "Ubuntu-18.04", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell", | |
"source": "Windows.Terminal.PowershellCore" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"name" : "Dracula", | |
"background" : "#323336", | |
"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": "copy", | |
"keys": "ctrl+shift+c" | |
}, | |
{ | |
"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