Skip to content

Instantly share code, notes, and snippets.

@BitPatty
Created February 28, 2020 22:17
Show Gist options
  • Save BitPatty/e27a5578968b42b108793485b9f859c7 to your computer and use it in GitHub Desktop.
Save BitPatty/e27a5578968b42b108793485b9f859c7 to your computer and use it in GitHub Desktop.
WSL Configuration
// 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}",
"alwaysShowTabs": false,
"showTabsInTitlebar": false,
// "showTabsInTitlebar": false,
"profiles": [
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "DOS",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell Core",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"tabTitle": "DOS but not actually DOS",
"commandline" : "wsl ~ -d Ubuntu",
"backgroundImage": "ms-appdata:///roaming/def2.gif",
"backgroundImageOpacity": 0.2,
"background": "#1e1e1e",
"historySize": 9001,
"padding": "10",
"cursorColor": "#ff0000",
"cursorShape": "vintage",
"colorScheme": "Dracula",
"foreground": "#fafafa",
"useAcrylic": false,
"acrylicOpacity": 0.3
},
{
"guid": "{46ca431a-3a87-5fb3-83cd-11ececc031d2}",
"hidden": false,
"name": "kali-linux",
"source": "Windows.Terminal.Wsl"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
],
"schemes": [
{
"background": "#282A36",
"black": "#21222C",
"blue": "#BD93F9",
"brightBlack": "#6272A4",
"brightBlue": "#D6ACFF",
"brightCyan": "#A4FFFF",
"brightGreen": "#69FF94",
"brightPurple": "#FF92DF",
"brightRed": "#FF6E6E",
"brightWhite": "#FFFFFF",
"brightYellow": "#FFFFA5",
"cyan": "#8BE9FD",
"foreground": "#F8F8F2",
"green": "#50FA7B",
"name": "Dracula",
"purple": "#FF79C6",
"red": "#FF5555",
"white": "#F8F8F2",
"yellow": "#F1FA8C"
}
],
"keybindings": [
{
"command": "newTab",
"keys": [ "ctrl+shift+t" ]
},
{
"command": {
"action": "copy",
"trimWhitespace": true
},
"keys": [ "ctrl+shift+c" ]
},
{
"command": "paste",
"keys": [ "ctrl+shift+v" ]
},
{
"command": "prevTab",
"keys": [ "ctrl+shift+up" ]
},
{
"command": "nextTab",
"keys": [ "ctrl+shift+down" ]
},
{
"command": {
"action": "splitPane",
"split": "vertical"
},
"keys": [ "ctrl+shift+numpad_plus" ]
},
{
"command": "closePane",
"keys": [ "ctrl+shift+numpad_minus" ]
},
{
"command": {
"action": "moveFocus",
"direction": "left"
},
"keys": [ "ctrl+shift+left" ]
},
{
"command": {
"action": "moveFocus",
"direction": "right"
},
"keys": [ "ctrl+shift+right" ]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment