Last active
February 2, 2023 17:07
-
-
Save StarDuster/9d53408eeb57bb22365f41bbe0f0a953 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": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", | |
"profiles": [ | |
{ | |
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", | |
"hidden": false, | |
"name": "Debian", | |
"historySize": 100000, | |
"copyOnSelect": true, | |
"foreground": "#c5c8c6", | |
"background": "#1d1f21", | |
"fontFace": "DejaVu Sans Mono", | |
//"fontFace": "menlo", | |
"fontSize": 12, | |
//"colorScheme": "", | |
"acrylicOpacity": 0.9, | |
"useAcrylic": true, | |
"source": "Windows.Terminal.Wsl", | |
//"commandline" : "wsl bash", | |
"startingDirectory": "//wsl$/Debian/home/stardust" | |
}, | |
{ | |
// 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": [], | |
"wordDelimiters": "\\()\"':,;<>~!@#$%^&*|+=[]{}~?│", | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": [ | |
{ | |
"command": "find", | |
"keys": [ | |
"ctrl+f" | |
] | |
}, | |
{ | |
"command": "closePane", | |
"keys": [ | |
"ctrl+w" | |
] | |
}, | |
{ | |
"command": "paste", | |
"keys": [ | |
"ctrl+v" | |
] | |
}, | |
{ | |
"command": "newTab", | |
"keys": [ | |
"ctrl+t" | |
] | |
}, | |
{ | |
"command": { | |
"action": "sendInput", | |
"keys": [ | |
"ctrl+v" | |
] | |
}, | |
"keys": [ | |
"ctrl+shift+v" | |
// send ctrl+v when press ctrl+shift+v, useable in vim | |
] | |
}, | |
{ | |
"command": { | |
"action": "splitPane", | |
"split": "vertical" | |
}, | |
"keys": [ | |
"alt+d" | |
] | |
}, | |
{ | |
"command": { | |
"action": "splitPane", | |
"split": "horizontal" | |
}, | |
"keys": [ | |
"alt+shift+d" | |
] | |
}, | |
{ | |
"command": { | |
"action": "moveFocus", | |
"direction": "value" | |
}, | |
"left": [ | |
"alt+left" | |
] | |
}, | |
{ | |
"command": { | |
"action": "moveFocus", | |
"direction": "value" | |
}, | |
"right": [ | |
"alt+right" | |
] | |
}, | |
{ | |
"command": { | |
"action": "moveFocus", | |
"direction": "value" | |
}, | |
"up": [ | |
"alt+up" | |
] | |
}, | |
{ | |
"command": { | |
"action": "moveFocus", | |
"direction": "value" | |
}, | |
"down": [ | |
"alt+down" | |
] | |
} | |
// etc. | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment