Last active
May 11, 2020 02:26
-
-
Save Richienb/70886e249ab1a0bd8505b379bdf7a87c to your computer and use it in GitHub Desktop.
My 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
// 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": "{0eca68b7-6ef1-402f-b212-a6a02220ae13}", | |
"theme": "dark", | |
"profiles": [ | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"colorScheme": "Snazzy" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false, | |
"colorScheme": "Snazzy" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure", | |
"colorScheme": "Snazzy" | |
}, | |
{ | |
"guid": "{0eca68b7-6ef1-402f-b212-a6a02220ae13}", | |
"name": "Bash", | |
"commandline": "\"%PROGRAMFILES%\\git\\usr\\bin\\bash.exe\" -i -l", | |
"hidden": false, | |
"icon": "%SystemDrive%\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico", | |
"colorScheme": "Snazzy" | |
}, | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl", | |
"colorScheme": "Snazzy" | |
} | |
], | |
"schemes": [ | |
{ | |
"name": "Snazzy", | |
"foreground": "#eff0eb", | |
"background": "#282a36", | |
"selectionBackground": "#97979b", | |
"cursorColor": "#97979b", | |
"black": "#282a36", | |
"red": "#ff5c57", | |
"green": "#5af78e", | |
"yellow": "#f3f99d", | |
"blue": "#57c7ff", | |
"purple": "#ff6ac1", | |
"cyan": "#9aedfe", | |
"white": "#f1f1f0", | |
"brightBlack": "#686868", | |
"brightRed": "#ff5c57", | |
"brightGreen": "#5af78e", | |
"brightYellow": "#f3f99d", | |
"brightBlue": "#57c7ff", | |
"brightPurple": "#ff6ac1", | |
"brightCyan": "#9aedfe", | |
"brightWhite": "#eff0eb" | |
} | |
], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment