Created
October 9, 2019 23:04
-
-
Save aaronsteers/1d422896a3d710d406cae1e64457403b to your computer and use it in GitHub Desktop.
Windows Terminal Settings
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": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"profiles": | |
[ | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl", | |
"acrylicOpacity" : 0.6, | |
"useAcrylic" : true, | |
"colorScheme" : "One Half Dark", | |
"cursorColor" : "#FFFFFF", | |
"cursorShape" : "bar", | |
"fontFace" : "Consolas", | |
"fontSize" : 11, | |
"padding" : "0, 0, 2, 0", | |
"background":"#000000", | |
"backgroundImageOpacity": 0.3, | |
"backgroundImageStretchMode": "none", | |
"backgroundImage": "C:/Users/aaron.steers/Documents/Pictures/ubuntu-logo.png" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false, | |
"acrylicOpacity" : 0.75, | |
"useAcrylic" : true, | |
"colorScheme" : "One Half Dark", | |
"cursorColor" : "#FFFFFF", | |
"cursorShape" : "bar", | |
"fontFace" : "Consolas", | |
"fontSize" : 11, | |
"padding" : "0, 0, 2, 0", | |
"background":"#153f01", | |
"backgroundImageOpacity": 0.1, | |
"backgroundImageStretchMode": "none", | |
"backgroundImage": "C:/Users/aaron.steers/Documents/Pictures/cmd-logo-3.png" | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"acrylicOpacity" : 0.75, | |
"useAcrylic" : true, | |
"colorScheme" : "One Half Dark", | |
"cursorColor" : "#FFFFFF", | |
"cursorShape" : "bar", | |
"fontFace" : "Consolas", | |
"fontSize" : 11, | |
"padding" : "0, 0, 2, 0", | |
"background":"#012456", | |
"backgroundImageOpacity": 0.2, | |
"backgroundImageStretchMode": "none", | |
"backgroundImage": "C:/Users/aaron.steers/Documents/Pictures/powershell-logo-1.png" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
], | |
// Add custom color schemes to this array | |
// or reference the built-ins: | |
// Campbell, One Half Dark, One Half Light, Solarized Dark, Solarized Light | |
"schemes": [], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{ "command": "nextTab", "keys": ["ctrl+pgdn"] }, | |
{ "command": "prevTab", "keys": ["ctrl+pgup"] }, | |
{ "command": "closePane", "keys": ["ctrl+shift+w"] }, | |
{ "command": "duplicateTab", "keys": ["ctrl+shift+d"] }, | |
{ "command": "scrollDownPage", "keys": ["pgdn"] }, | |
{ "command": "scrollUpPage", "keys": ["pgup"] }, | |
// { "command": "scrollDownPage", "keys": ["ctrl+pgdn"] }, | |
// { "command": "scrollUpPage", "keys": ["ctrl+pgup"] }, | |
{ "command": "copy", "keys": ["ctrl+c"] }, | |
{ "command": "paste", "keys": ["ctrl+v"] }, | |
{ "command": "newTab", "keys": ["ctrl+n"] } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment