Created
March 21, 2020 00:55
-
-
Save theol0403/4980c6cff5b194f1a11eb09964e5cfe6 to your computer and use it in GitHub Desktop.
Windows terminal with materialshell scheme
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": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"profiles": | |
[ | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"name": "zsh", | |
"source": "Windows.Terminal.Wsl", | |
"icon": "https://2.bp.blogspot.com/-F2BYl0sdKfg/UwA0hjq4JPI/AAAAAAAACuc/N6_xxWUlZNkjfq-oVnq5jo7DH6FBNfKGQCKgB/s1600/git_icon.png", | |
"hidden": false, | |
"colorScheme": "oceanic", | |
"fontSize": 10, | |
"closeOnExit": false, | |
"startingDirectory": null | |
}, | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f519}", | |
"name": "bash", | |
"commandline": "bash", | |
"icon": "https://miro.medium.com/max/512/1*ZLVwDPb9UFXACsXy5LfO9Q.png", | |
"hidden": false, | |
"colorScheme": "oceanic", | |
"fontSize": 10, | |
"closeOnExit": false, | |
"startingDirectory": "%USERPROFILE%" | |
}, | |
{ | |
"guid": "{994f3ea3-5574-4af0-9b13-32b31f53623e}", | |
"name": "git bash", | |
"commandline": "C:\\Program Files\\Git\\git-cmd.exe --command=usr/bin/bash.exe -l -i", | |
"icon": "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico", | |
"hidden": false, | |
"colorScheme": "oceanic", | |
"fontSize": 10, | |
"closeOnExit": false, | |
"startingDirectory": null | |
}, | |
{ | |
"guid": "{994f3ea3-5574-4af0-9b13-32b31f53624e}", | |
"name": "msys", | |
"commandline": "C:\\msys64\\usr\\bin\\bash.exe --login -i", | |
"icon": "C:\\msys64\\msys2.ico", | |
"hidden": false, | |
"colorScheme": "oceanic", | |
"fontSize": 10, | |
"closeOnExit": false, | |
"startingDirectory": null | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false, | |
"colorScheme": "oceanic", | |
"fontSize": 10, | |
"closeOnExit": false, | |
"startingDirectory": null | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"colorScheme": "oceanic", | |
"fontSize": 10, | |
"closeOnExit": false | |
}, | |
{ | |
"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" : "#151515", | |
"foreground" : "#A1B0B8", | |
"black" : "#252525", | |
"blue" : "#42A5F5", | |
"brightBlack" : "#708284", | |
"brightBlue" : "#42A5F5", | |
"brightCyan" : "#00ACC1", | |
"brightGreen" : "#C3D82C", | |
"brightPurple" : "#D81B60", | |
"brightRed" : "#FF5252", | |
"brightWhite" : "#F5F5F5", | |
"brightYellow" : "#FFC135", | |
"cyan" : "#00ACC1", | |
// "foreground" : "#F2F2F2", | |
"green" : "#C3D82C", | |
"purple" : "#D81B60", | |
"red" : "#FF5252", | |
"white" : "#F5F5F5", | |
"yellow" : "#FFC135", | |
"name" : "oceanic" | |
} | |
], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [], | |
// "copyOnSelect": true, | |
"requestedTheme": "dark" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment