Last active
September 21, 2020 19:00
-
-
Save gyandeeps/24223144b948d4f47fe7db23618d3a2a to your computer and use it in GitHub Desktop.
Windows Terminal Profile
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": "{e4f9ad07-b8dd-4267-b05f-ba1bee15339e}", | |
"showTerminalTitleInTitlebar": true, | |
"experimental_showTabsInTitlebar": true, | |
"initialCols": 140, | |
"initialRows": 42, | |
"profiles": { | |
"defaults": { | |
// Put settings here that you want to apply to all profiles. | |
"acrylicOpacity": 1, | |
"useAcrylic": true, | |
"fontSize": 10, | |
"fontFace": "Cascadia Code" | |
}, | |
"list": [ | |
{ | |
// Make changes here to the bash.exe profile | |
"guid": "{e4f9ad07-b8dd-4267-b05f-ba1bee15339e}", | |
"name": "Git Bash", | |
"commandline": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"hidden": false, | |
"icon": "C:/Program Files/Git/mingw64/share/git/git-for-windows.ico", | |
"closeOnExit": true, | |
"startingDirectory": "C:\\code\\corporate" | |
}, | |
{ | |
// Make changes here to the powershell.exe profile | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"startingDirectory": "C:\\code\\corporate" | |
}, | |
{ | |
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"hidden": false, | |
"name": "Ubuntu-20.04 🐳", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
// Make changes here to the cmd.exe profile | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd", | |
"commandline": "cmd.exe", | |
"hidden": false, | |
"startingDirectory": "C:\\code\\corporate" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"schemes": [], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{ | |
"command": "newTab", | |
"keys": [ | |
"ctrl+t" | |
] | |
}, | |
{ | |
"command": "closeTab", | |
"keys": [ | |
"ctrl+w" | |
] | |
}, | |
{ | |
"command": "nextTab", | |
"keys": [ | |
"ctrl+tab" | |
] | |
}, | |
{ | |
"command": "prevTab", | |
"keys": [ | |
"ctrl+shift+tab" | |
] | |
}, | |
{ | |
"command": "scrollDown", | |
"keys": [ | |
"ctrl+shift+down" | |
] | |
}, | |
{ | |
"command": "scrollDownPage", | |
"keys": [ | |
"ctrl+shift+pgdn" | |
] | |
}, | |
{ | |
"command": "scrollUp", | |
"keys": [ | |
"ctrl+shift+up" | |
] | |
}, | |
{ | |
"command": "scrollUpPage", | |
"keys": [ | |
"ctrl+shift+pgup" | |
] | |
}, | |
{ | |
"command": "switchToTab0", | |
"keys": [ | |
"alt+1" | |
] | |
}, | |
{ | |
"command": "switchToTab1", | |
"keys": [ | |
"alt+2" | |
] | |
}, | |
{ | |
"command": "switchToTab2", | |
"keys": [ | |
"alt+3" | |
] | |
}, | |
{ | |
"command": "switchToTab3", | |
"keys": [ | |
"alt+4" | |
] | |
}, | |
{ | |
"command": "switchToTab4", | |
"keys": [ | |
"alt+5" | |
] | |
}, | |
{ | |
"command": "switchToTab5", | |
"keys": [ | |
"alt+6" | |
] | |
}, | |
{ | |
"command": "switchToTab6", | |
"keys": [ | |
"alt+7" | |
] | |
}, | |
{ | |
"command": "switchToTab7", | |
"keys": [ | |
"alt+8" | |
] | |
}, | |
{ | |
"command": "switchToTab8", | |
"keys": [ | |
"alt+9" | |
] | |
}, | |
{ | |
"command": "copy", | |
"keys": [ | |
"ctrl+c" | |
] | |
}, | |
{ | |
"command": "paste", | |
"keys": [ | |
"ctrl+v" | |
] | |
}, | |
{ | |
"command": "find", | |
"keys": "ctrl+f" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment