Last active
January 26, 2023 01:44
-
-
Save nurmuhammadsirat/e58a3cdbeccc315f880c4a22b9cb826d to your computer and use it in GitHub Desktop.
Windows Terminal settings
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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "", // UUID of an application in the list below | |
| "copyOnSelect": false, | |
| "copyFormatting": false, | |
| "profiles": | |
| { | |
| "defaults": | |
| {}, | |
| "list": | |
| [ | |
| // Add your own list of applications here | |
| ] | |
| }, | |
| "schemes": [], | |
| "actions": | |
| [ | |
| // copy-paste | |
| { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
| { "command": "paste", "keys": "ctrl+v" }, | |
| { "command": "find", "keys": "ctrl+shift+f" }, | |
| // pane management | |
| { "command": { "action": "splitPane", "split": "horizontal", "splitMode": "duplicate" }, "keys": "alt+shift+d" }, | |
| { "command": { "action": "splitPane", "split": "vertical", "splitMode": "duplicate" }, "keys": "alt+d" }, | |
| { "command": "togglePaneZoom", "keys": "alt+shift+enter" }, | |
| { "command": "closePane", "keys": "alt+w" }, | |
| { "command": { "action": "clearBuffer", "clear": "all" }, "keys": "alt+k" }, | |
| // tab management | |
| { "command": { "action": "switchToTab", "index": 0 }, "keys": "alt+1" }, | |
| { "command": { "action": "switchToTab", "index": 1 }, "keys": "alt+2" }, | |
| { "command": { "action": "switchToTab", "index": 2 }, "keys": "alt+3" }, | |
| { "command": { "action": "switchToTab", "index": 3 }, "keys": "alt+4" }, | |
| { "command": { "action": "switchToTab", "index": 4 }, "keys": "alt+5" }, | |
| { "command": { "action": "switchToTab", "index": 5 }, "keys": "alt+6" }, | |
| { "command": { "action": "switchToTab", "index": 6 }, "keys": "alt+7" }, | |
| { "command": { "action": "switchToTab", "index": 7 }, "keys": "alt+8" }, | |
| { "command": { "action": "switchToTab", "index": 8 }, "keys": "alt+9" }, | |
| { "command": { "action": "switchToTab", "index": 9 }, "keys": "alt+0" }, | |
| { "command": "newTab", "keys": "alt+t" } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment