Skip to content

Instantly share code, notes, and snippets.

@rmacfie
Last active March 27, 2020 11:15
Show Gist options
  • Save rmacfie/4a25acba2dcd81b95d1f34e62ce6a97b to your computer and use it in GitHub Desktop.
Save rmacfie/4a25acba2dcd81b95d1f34e62ce6a97b to your computer and use it in GitHub Desktop.
Windows Terminal settings
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"profiles": {
"defaults": {
"startingDirectory": "C:\\Source",
"snapOnInput": true,
"closeOnExit": true,
"historySize": 9001,
"colorScheme": "VS Code",
"cursorColor": "#FFFFFF",
"cursorShape": "filledBox",
"padding": "10",
"scrollbarState": "visible",
"fontFace": "Consolas",
"fontSize": 8
},
"list": [
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "Command Prompt",
"commandline": "cmd.exe"
},
{
"guid": "{00000000-0000-0000-ba54-000000000001}",
"name": "Git Bash",
"colorScheme": "Dracula",
"commandline": "\"%UserProfile%\\scoop\\apps\\git\\current\\usr\\bin\\bash.exe\" -i -l",
"icon": "%UserProfile%\\scoop\\apps\\git\\current\\usr\\share\\git\\git-for-windows.ico"
},
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"name": "PowerShell Core",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "PowerShell Legacy",
"commandline": "powershell.exe"
},
{
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"hidden": true,
"name": "WSL Bash (Ubuntu-18.04)",
"source": "Windows.Terminal.Wsl"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
]
},
"keybindings": [
{ "command": "find", "keys": ["ctrl+f"] },
{ "command": "decreaseFontSize", "keys": ["ctrl+minus"] },
{ "command": "increaseFontSize", "keys": ["ctrl+plus"] },
{ "command": "resetFontSize", "keys": ["ctrl+0"] },
// tabs
{ "command": "openNewTabDropdown", "keys": ["ctrl+o"] },
{ "command": "newTab", "keys": ["ctrl+t"] },
{ "command": "closeTab", "keys": ["ctrl+w"] },
{ "command": "nextTab", "keys": ["ctrl+tab"] },
{ "command": "prevTab", "keys": ["ctrl+shift+tab"] },
// panes
{ "command": "splitPane", "keys": ["ctrl+shift+up"] },
{ "command": "splitVertical", "keys": ["ctrl+shift+right"] },
{ "command": "splitHorizontal", "keys": ["ctrl+shift+down"] },
{ "command": "closePane", "keys": ["ctrl+shift+w"] },
{ "command": "moveFocusUp", "keys": ["ctrl+up"] },
{ "command": "moveFocusDown", "keys": ["ctrl+down"] },
{ "command": "moveFocusLeft", "keys": ["ctrl+left"] },
{ "command": "moveFocusRight", "keys": ["ctrl+right"] }
],
"schemes": [
{
"name" : "Dracula",
"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",
"purple" : "#FF79C6",
"red" : "#FF5555",
"white" : "#F8F8F2",
"yellow" : "#F1FA8C"
},
{
"name": "VS Code",
"background" : "#232323",
"black" : "#000000",
"blue" : "#579BD5",
"brightBlack" : "#797979",
"brightBlue" : "#9BDBFE",
"brightCyan" : "#2BC4E2",
"brightGreen" : "#1AD69C",
"brightPurple" : "#DF89DD",
"brightRed" : "#F6645D",
"brightWhite" : "#EAEAEA",
"brightYellow" : "#F6F353",
"cyan" : "#00B6D6",
"foreground" : "#D3D3D3",
"green" : "#3FC48A",
"purple" : "#CA5BC8",
"red" : "#D8473F",
"white" : "#EAEAEA",
"yellow" : "#D7BA7D"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment