Last active
May 18, 2020 01:30
-
-
Save griimick/b5fa2fd7dca56a834e9f747f1e6db6de to your computer and use it in GitHub Desktop.
Windows Terminal config
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": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"launchMode" : "maximized", | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"fontFace": "Fira Code", | |
"fontSize": 11, | |
"colorScheme": "Gruvbox Dark", | |
"cursorShape" : "filledBox" | |
}, | |
"list": | |
[ | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": true | |
}, | |
{ | |
"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", | |
"startingDirectory" : "//wsl$/Ubuntu-18.04/home/griimick", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"name": "Gruvbox Dark", | |
"black": "#1e1e1e", | |
"red": "#be0f17", | |
"green": "#868715", | |
"yellow": "#cc881a", | |
"blue": "#377375", | |
"purple": "#a04b73", | |
"cyan": "#578e57", | |
"white": "#978771", | |
"brightBlack": "#7f7061", | |
"brightRed": "#f73028", | |
"brightGreen": "#aab01e", | |
"brightYellow": "#f7b125", | |
"brightBlue": "#719586", | |
"brightPurple": "#c77089", | |
"brightCyan": "#7db669", | |
"brightWhite": "#e6d4a3", | |
"background": "#1e1e1e", | |
"foreground": "#e6d4a3" | |
} | |
], | |
"keybindings": | |
[ | |
{ "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