Last active
March 5, 2020 13:51
-
-
Save collinbarrett/04b9e548e7a5b1f27f708874fe3ae5f4 to your computer and use it in GitHub Desktop.
A Windows Terminal config. Dependencies: Git for Windows, WSL (Ubuntu LTS), Fira Code
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
// Deprecated: Moved to https://github.com/collinbarrett/box-setup/blob/master/windows-terminal/profiles.json | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{4a745997-9220-4b9c-9fac-c18e93b46ab2}", | |
"profiles": [ | |
{ | |
"guid": "{4a745997-9220-4b9c-9fac-c18e93b46ab2}", | |
"hidden": false, | |
"name": "MinGW-w64", | |
"commandline": "\"%PROGRAMFILES%\\Git\\bin\\bash.exe\" -i -l", | |
"fontFace": "Fira Code Retina", | |
"fontSize": 10, | |
"icon": "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico", | |
"startingDirectory": "%UserProfile%" | |
}, | |
{ | |
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"hidden": false, | |
"name": "Ubuntu-18.04", | |
"source": "Windows.Terminal.Wsl", | |
"fontFace": "Fira Code Retina", | |
"fontSize": 10 | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"hidden": false, | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"fontFace": "Fira Code Retina", | |
"fontSize": 10, | |
"startingDirectory": "%UserProfile%" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"hidden": false, | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"fontFace": "Fira Code Retina", | |
"fontSize": 10, | |
"startingDirectory": "%UserProfile%" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure", | |
"fontFace": "Fira Code Retina", | |
"fontSize": 10 | |
} | |
], | |
"schemes": [], | |
"keybindings": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment