Created
April 29, 2020 08:17
-
-
Save suzumura-ss/b2ab433bb4f9a8e2f4015d398ac1174e to your computer and use it in GitHub Desktop.
Windows Terminal settings.json
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": "{cc786dcc-89ec-11ea-9df5-737d6d703cc6}", | |
"copyOnSelect": true, | |
"profiles": | |
{ | |
"defaults": | |
{ | |
// Put settings here that you want to apply to all profiles | |
"useAcrylic": true, | |
"acrylicOpacity": 0.5, | |
//"colorScheme": "Campbell" | |
//"colorScheme": "Solarized Light" | |
"colorScheme": "Monokai Night" | |
}, | |
"list": | |
[ | |
{ | |
"guid": "{cc786dcc-89ec-11ea-9df5-737d6d703cc6}", | |
"name": "Bash", | |
"commandline": "C:/bin/Git/bin/bash.exe", | |
"startingDirectory": "~", | |
"hidden": false | |
}, | |
{ | |
"guid": "{49c2355a-89ee-11ea-967d-4370638ea8fb}", | |
"name": "MSYS Bash", | |
"commandline" : "cmd.exe /c \"set MSYSTEM=MINGW64&& set MSYS=winsymlinks:nativestrict&& C:/bin/msys64/usr/bin/bash.exe --login\"", | |
"icon": "C:/bin/msys64/msys2.ico", | |
"startingDirectory": "~", | |
"hidden": false | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"startingDirectory": "%HOME%", | |
"hidden": false | |
}, | |
{ | |
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"name": "Ubuntu-18.04", | |
"source": "Windows.Terminal.Wsl", | |
"startingDirectory": "~", | |
"hidden": false | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": true | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure", | |
"hidden": true | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"schemes": [ | |
{ | |
"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