Created
July 17, 2020 15:34
-
-
Save niyabits/176239505bb52e547f1eb944df588e52 to your computer and use it in GitHub Desktop.
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": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
// Launch Settings | |
"initialCols": 120, | |
"initialRows": 30, | |
"launchMode": "default", | |
// Selection | |
"copyOnSelect": false, | |
"copyFormatting": true, | |
"wordDelimiters": " /\\()\"'-.,:;<>~!@#$%^&*|+=[]{}~?\u2502", | |
// Tab UI | |
"alwaysShowTabs": true, | |
"showTabsInTitlebar": true, | |
"showTerminalTitleInTitlebar": true, | |
"tabWidthMode": "equal", | |
// Miscellaneous | |
"confirmCloseAllTabs": true, | |
"theme": "system", | |
"rowsToScroll": "system", | |
"snapToGridOnResize": true, | |
"profiles": | |
[ | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl", | |
"colorScheme": "Night Owl", | |
"fontFace": "CaskaydiaCove NF", | |
"fontSize": 12, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.75, | |
"padding": "18, 18, 18, 18" | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"icon": "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png", | |
"colorScheme": "Campbell", | |
"antialiasingMode": "grayscale", | |
"closeOnExit": "graceful", | |
"cursorShape": "bar", | |
"fontFace": "Cascadia Mono", | |
"fontSize": 12, | |
"hidden": false, | |
"historySize": 9001, | |
"padding": "8, 8, 8, 8", | |
"snapOnInput": true, | |
"startingDirectory": "%USERPROFILE%", | |
"useAcrylic": false | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "%SystemRoot%\\System32\\cmd.exe", | |
"icon": "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png", | |
"colorScheme": "Campbell", | |
"antialiasingMode": "grayscale", | |
"closeOnExit": "graceful", | |
"cursorShape": "bar", | |
"fontFace": "Cascadia Mono", | |
"fontSize": 12, | |
"hidden": false, | |
"historySize": 9001, | |
"padding": "8, 8, 8, 8", | |
"snapOnInput": true, | |
"startingDirectory": "%USERPROFILE%", | |
"useAcrylic": false | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
], | |
"schemes": | |
[ | |
{ | |
"name": "Night Owl", | |
"background": "#011627", | |
"black": "#011627", | |
"blue": "#82AAFF", | |
"brightBlack": "#575656", | |
"brightBlue": "#82AAFF", | |
"brightCyan": "#7FDBCA", | |
"brightGreen": "#22DA6E", | |
"brightPurple": "#C792EA", | |
"brightRed": "#EF5350", | |
"brightWhite": "#FFFFFF", | |
"brightYellow": "#FFEB95", | |
"cyan": "#21C7A8", | |
"foreground": "#D6DEEB", | |
"green": "#22DA6E", | |
"purple": "#C792EA", | |
"red": "#EF5350", | |
"white": "#ffffff", | |
"yellow": "#ADDB67" | |
} | |
], | |
"keybindings": | |
[ | |
// Application-level Keys | |
{ "command": "closeWindow", "keys": "alt+f4" }, | |
{ "command": "toggleFullscreen", "keys": "alt+enter" }, | |
{ "command": "toggleFullscreen", "keys": "f11" }, | |
{ "command": "openNewTabDropdown", "keys": "ctrl+shift+space" }, | |
{ "command": "openSettings", "keys": "ctrl+," }, | |
{ "command": "find", "keys": "ctrl+shift+f" }, | |
// Tab Management | |
// "command": "closeTab" is unbound by default. | |
// The closeTab command closes a tab without confirmation, even if it has multiple panes. | |
{ "command": "newTab", "keys": "ctrl+shift+t" }, | |
{ "command": { "action": "newTab", "index": 0 }, "keys": "ctrl+shift+1" }, | |
{ "command": { "action": "newTab", "index": 1 }, "keys": "ctrl+shift+2" }, | |
{ "command": { "action": "newTab", "index": 2 }, "keys": "ctrl+shift+3" }, | |
{ "command": { "action": "newTab", "index": 3 }, "keys": "ctrl+shift+4" }, | |
{ "command": { "action": "newTab", "index": 4 }, "keys": "ctrl+shift+5" }, | |
{ "command": { "action": "newTab", "index": 5 }, "keys": "ctrl+shift+6" }, | |
{ "command": { "action": "newTab", "index": 6 }, "keys": "ctrl+shift+7" }, | |
{ "command": { "action": "newTab", "index": 7 }, "keys": "ctrl+shift+8" }, | |
{ "command": { "action": "newTab", "index": 8 }, "keys": "ctrl+shift+9" }, | |
{ "command": "duplicateTab", "keys": "ctrl+shift+d" }, | |
{ "command": "nextTab", "keys": "ctrl+tab" }, | |
{ "command": "prevTab", "keys": "ctrl+shift+tab" }, | |
{ "command": { "action": "switchToTab", "index": 0 }, "keys": "ctrl+alt+1" }, | |
{ "command": { "action": "switchToTab", "index": 1 }, "keys": "ctrl+alt+2" }, | |
{ "command": { "action": "switchToTab", "index": 2 }, "keys": "ctrl+alt+3" }, | |
{ "command": { "action": "switchToTab", "index": 3 }, "keys": "ctrl+alt+4" }, | |
{ "command": { "action": "switchToTab", "index": 4 }, "keys": "ctrl+alt+5" }, | |
{ "command": { "action": "switchToTab", "index": 5 }, "keys": "ctrl+alt+6" }, | |
{ "command": { "action": "switchToTab", "index": 6 }, "keys": "ctrl+alt+7" }, | |
{ "command": { "action": "switchToTab", "index": 7 }, "keys": "ctrl+alt+8" }, | |
{ "command": { "action": "switchToTab", "index": 8 }, "keys": "ctrl+alt+9" }, | |
// Pane Management | |
{ "command": "closePane", "keys": "ctrl+shift+w" }, | |
{ "command": { "action": "splitPane", "split": "horizontal" }, "keys": "alt+shift+-" }, | |
{ "command": { "action": "splitPane", "split": "vertical" }, "keys": "alt+shift+plus" }, | |
{ "command": { "action": "resizePane", "direction": "down" }, "keys": "alt+shift+down" }, | |
{ "command": { "action": "resizePane", "direction": "left" }, "keys": "alt+shift+left" }, | |
{ "command": { "action": "resizePane", "direction": "right" }, "keys": "alt+shift+right" }, | |
{ "command": { "action": "resizePane", "direction": "up" }, "keys": "alt+shift+up" }, | |
{ "command": { "action": "moveFocus", "direction": "down" }, "keys": "alt+down" }, | |
{ "command": { "action": "moveFocus", "direction": "left" }, "keys": "alt+left" }, | |
{ "command": { "action": "moveFocus", "direction": "right" }, "keys": "alt+right" }, | |
{ "command": { "action": "moveFocus", "direction": "up" }, "keys": "alt+up" }, | |
// Clipboard Integration | |
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+shift+c" }, | |
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+insert" }, | |
{ "command": "paste", "keys": "ctrl+shift+v" }, | |
{ "command": "paste", "keys": "shift+insert" }, | |
// Scrollback | |
{ "command": "scrollDown", "keys": "ctrl+shift+down" }, | |
{ "command": "scrollDownPage", "keys": "ctrl+shift+pgdn" }, | |
{ "command": "scrollUp", "keys": "ctrl+shift+up" }, | |
{ "command": "scrollUpPage", "keys": "ctrl+shift+pgup" }, | |
// Visual Adjustments | |
{ "command": { "action": "adjustFontSize", "delta": 1 }, "keys": "ctrl+=" }, | |
{ "command": { "action": "adjustFontSize", "delta": -1 }, "keys": "ctrl+-" }, | |
{ "command": "resetFontSize", "keys": "ctrl+0" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment