Skip to content

Instantly share code, notes, and snippets.

@qis
Last active May 2, 2021 20:41
Show Gist options
  • Save qis/541232a5d14934b58babe5f95039e880 to your computer and use it in GitHub Desktop.
Save qis/541232a5d14934b58babe5f95039e880 to your computer and use it in GitHub Desktop.
// https://aka.ms/terminal
{
// https://aka.ms/terminal-global-settings
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"copyOnSelect": true,
"copyFormatting": true,
"showTabsInTitlebar": false,
"showTerminalTitleInTitlebar": true,
"alwaysShowTabs": false,
"initialCols": 150,
"initialRows": 45,
// https://aka.ms/terminal-profile-settings
"profiles": {
"defaults": {
"padding": "4, 3, 4, 3",
"fontFace": "DejaVu LGC Sans Mono",
"fontSize": 9,
"useAcrylic": false,
"acrylicOpacity": 1,
"colorScheme": "default",
"cursorShape": "vintage",
"closeOnExit": true,
"cursorHeight": 25
},
"list": [
{
"name": "Console",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"commandline": "cmd.exe"
},
{
"name": "PowerShell",
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"commandline": "powershell.exe"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"name": "Terminal",
"source": "Windows.Terminal.Wsl"
}
]
},
// https://aka.ms/terminal-color-schemes
"schemes": [
{
"name": "default",
"black": "#1e1e1e",
"red": "#ff615a",
"green": "#b1e969",
"yellow": "#ebd99c",
"blue": "#5da9f6",
"purple": "#e86aff",
"cyan": "#82fff7",
"white": "#dcdcdc",
"brightBlack": "#787878",
"brightRed": "#f58c80",
"brightGreen": "#ddf88f",
"brightYellow": "#eee5b2",
"brightBlue": "#a5c7ff",
"brightPurple": "#ddaaff",
"brightCyan": "#b7fff9",
"brightWhite": "#ffffff",
"cursorColor": "#dcdcdc",
"background": "#1e1e1e",
"foreground": "#dcdcdc"
}
],
// https://aka.ms/terminal-keybindings
"keybindings": [
{ "command": "openSettings", "keys": [ "ctrl+," ] },
{ "command": "scrollUp", "keys": "shift+up" },
{ "command": "scrollDown", "keys": "shift+down" },
{ "command": "scrollUpPage", "keys": "shift+pageup" },
{ "command": "scrollDownPage", "keys": "shift+pagedown" },
{ "command": "splitPane", "keys": [ "ctrl+shift+up" ] },
{ "command": "closePane", "keys": [ "ctrl+shift+down" ] }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment