Created
April 23, 2020 06:06
-
-
Save jeanfbrito/e95c1e665ab844538efe0c63cdc628c2 to your computer and use it in GitHub Desktop.
My Windows Terminal Configuration
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": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"profiles": | |
{ | |
"defaults": | |
{ | |
// Put settings here that you want to apply to all profiles | |
}, | |
"list": | |
[ | |
{ | |
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", | |
"hidden": false, | |
"name": "Ubuntu-18.04", | |
"source": "Windows.Terminal.Wsl", | |
"fontFace": "Hack Nerd Font", | |
"fontSize": 11, | |
"colorScheme": "Dark", | |
"antialiasingMode": "cleartype" | |
}, | |
{ | |
// Make changes here to the powershell.exe profile | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false | |
}, | |
{ | |
// Make changes here to the cmd.exe profile | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": 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": [ | |
{ | |
"name": "Dark", | |
"black": "#000000", | |
"red": "#bb0000", | |
"green": "#00bb00", | |
"yellow": "#dddd00", | |
"blue": "#2828e6", | |
"purple": "#bb00bb", | |
"cyan": "#00bbbb", | |
"white": "#bbbbbb", | |
"brightBlack": "#555555", | |
"brightRed": "#ff5555", | |
"brightGreen": "#55ff55", | |
"brightYellow": "#ffff55", | |
"brightBlue": "#5555ff", | |
"brightPurple": "#ff55ff", | |
"brightCyan": "#55ffff", | |
"brightWhite": "#ffffff", | |
"background": "#050505", | |
"foreground": "#bbbbbb" | |
} | |
], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{ | |
"command" : "copy", | |
"keys" :["ctrl+c"] | |
}, | |
{ | |
"command" : "paste", | |
"keys" : ["ctrl+v"] | |
}, | |
{ | |
"command" : "find", | |
"keys":["ctrl+f"] | |
}, | |
{ | |
"command" : "closeTab", | |
"keys" : ["ctrl+w"] | |
}, | |
{ | |
"command" : "newTab", | |
"keys" : ["ctrl+t"] | |
}, | |
{ | |
"command": { | |
"action": "splitPane", | |
"split": "auto" | |
}, | |
"keys":["ctrl+shift+t"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment