Last active
July 13, 2020 17:38
-
-
Save john-craft/20e2e45e1d894788dacd9570b5cdcb6b to your computer and use it in GitHub Desktop.
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
// 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": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"profiles": | |
{ | |
"defaults": | |
{ | |
// Put settings here that you want to apply to all profiles | |
}, | |
"list": | |
[ | |
{ | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell", | |
"source": "Windows.Terminal.PowershellCore", | |
"fontFace": "Cascadia Code PL", | |
"closeOnExit": true, | |
"colorScheme": "Monokai Night", | |
"cursorShape": "vintage", | |
"historySize": 9001, | |
"padding": "0, 0, 0, 0", | |
"snapOnInput": true, | |
"startingDirectory": "%USERPROFILE%\\Documents\\Repos", | |
"useAcrylic": false | |
}, | |
{ | |
"guid": "{9cdf8bdd-69ea-474e-a9e7-3f9f4d336390}", | |
"name": "Git Bash", | |
"commandline": "\"%PROGRAMFILES%\\Git\\bin\\bash.exe\" -i -l", | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"fontFace": "Consolas", | |
"fontSize": 10, | |
"historySize": 9001, | |
"icon": "%PROGRAMFILES%\\git\\mingw64\\share\\git\\git-for-windows.ico", | |
"padding": "0, 0, 0, 0", | |
"snapOnInput": true, | |
"startingDirectory": "%USERPROFILE%\\Documents\\Repos", | |
"useAcrylic": false | |
}, | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"schemes": [ | |
{ | |
"background": "#282A36", | |
"black": "#21222C", | |
"blue": "#BD93F9", | |
"brightBlack": "#6272A4", | |
"brightBlue": "#D6ACFF", | |
"brightCyan": "#A4FFFF", | |
"brightGreen": "#69FF94", | |
"brightPurple": "#FF92DF", | |
"brightRed": "#FF6E6E", | |
"brightWhite": "#FFFFFF", | |
"brightYellow": "#FFFFA5", | |
"cyan": "#8BE9FD", | |
"foreground": "#F8F8F2", | |
"green": "#50FA7B", | |
"name": "Dracula", | |
"purple": "#FF79C6", | |
"red": "#FF5555", | |
"white": "#F8F8F2", | |
"yellow": "#F1FA8C" | |
}, | |
{ | |
"background": "#193549", | |
"black": "#000000", | |
"blue": "#1478DB", | |
"brightBlack": "#808080", | |
"brightBlue": "#1478DB", | |
"brightCyan": "#00ffff", | |
"brightGreen": "#33ff00", | |
"brightPurple": "#cc00ff", | |
"brightRed": "#ff0000", | |
"brightWhite": "#ffffff", | |
"brightYellow": "#ffff00", | |
"cyan": "#00c5c7", | |
"foreground": "#c7c7c7", | |
"green": "#3AD900", | |
"name": "Cobalt2", | |
"purple": "#ff2c70", | |
"red": "#ff2600", | |
"white": "#c7c7c7", | |
"yellow": "#ffc600" | |
}, | |
{ | |
"name" : "Monokai Night", | |
"background" : "#1f1f1f", | |
"foreground" : "#f8f8f8", | |
"black" : "#1f1f1f", | |
"blue" : "#6699df", | |
"cyan" : "#e69f66", | |
"green" : "#a6e22e", | |
"purple" : "#ae81ff", | |
"red" : "#f92672", | |
"white" : "#f8f8f2", | |
"yellow" : "#e6db74", | |
"brightBlack" : "#75715e", | |
"brightBlue" : "#66d9ef", | |
"brightCyan" : "#e69f66", | |
"brightGreen" : "#a6e22e", | |
"brightPurple" : "#ae81ff", | |
"brightRed" : "#f92672", | |
"brightWhite" : "#f8f8f2", | |
"brightYellow" : "#e6db74" | |
} | |
], | |
// 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