Skip to content

Instantly share code, notes, and snippets.

@pvoliveira
Created November 29, 2019 09:32
Show Gist options
  • Save pvoliveira/2eefedcf082c38b6e90ed3a61eed4bad to your computer and use it in GitHub Desktop.
Save pvoliveira/2eefedcf082c38b6e90ed3a61eed4bad to your computer and use it in GitHub Desktop.
Profile - Windows Terminal
// 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": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"profiles": [
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell Core",
"fontFace": "Meslo LG S for Powerline",
"fontSize": 9,
"source": "Windows.Terminal.PowershellCore",
"tabTitle": "pwscore",
"colorScheme": "Dracula"
},
{
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}",
"hidden": false,
"name": "Debian",
"fontFace": "Meslo LG S for Powerline",
"fontSize": 9,
"source": "Windows.Terminal.Wsl",
"tabTitle": "debian",
"colorScheme": "Dracula"
},
{
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2535}",
"hidden": false,
"name": "Ubuntu-18.04",
"fontFace": "Meslo LG S for Powerline",
"fontSize": 9,
"source": "Windows.Terminal.Wsl -d Ubuntu-18.04",
"tabTitle": "ubuntu-18.04",
"colorScheme": "Dracula"
},
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"fontSize": 9,
"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"
},
{
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"hidden": false,
"name": "Ubuntu-18.04",
"source": "Windows.Terminal.Wsl"
}
],
// Add custom color schemes to this array
"schemes": [
{
"name": "Dracula",
"background": "#272935",
"black": "#272935",
"blue": "#BD93F9",
"brightBlack": "#555555",
"brightBlue": "#BD93F9",
"brightCyan": "#8BE9FD",
"brightGreen": "#50FA7B",
"brightPurple": "#FF79C6",
"brightRed": "#FF5555",
"brightWhite": "#FFFFFF",
"brightYellow": "#F1FA8C",
"cyan": "#6272A4",
"foreground": "#F8F8F2",
"green": "#50FA7B",
"purple": "#6272A4",
"red": "#FF5555",
"white": "#F8F8F2",
"yellow": "#FFB86C"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{
"command": "splitHorizontal",
"keys": [
"ctrl+u"
]
},
{
"command": "splitVertical",
"keys": [
"ctrl+y"
]
},
{
"command": "moveFocusDown",
"keys": ["alt+down"]
},
{
"command": "moveFocusUp",
"keys": ["alt+up"]
},
{
"command": "moveFocusLeft",
"keys": ["alt+left"]
},
{
"command": "moveFocusRight",
"keys": ["alt+right"]
},
{
"command": "resizePaneRight",
"keys": ["alt+shift+right"]
},
{
"command": "resizePaneLeft",
"keys": ["alt+shift+left"]
},
{
"command": "resizePaneDown",
"keys": ["alt+shift+down"]
},
{
"command": "resizePaneUp",
"keys": ["alt+shift+up"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment