Skip to content

Instantly share code, notes, and snippets.

@TomasBouda
Last active June 25, 2020 11:19
Show Gist options
  • Save TomasBouda/03b3240a4bcdadc41ea0d9ccf52c09f3 to your computer and use it in GitHub Desktop.
Save TomasBouda/03b3240a4bcdadc41ea0d9ccf52c09f3 to your computer and use it in GitHub Desktop.
Windows Terminal Settings
// 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}",
"alwaysShowTabs": true,
"showTabsInTitlebar": true,
"showTerminalTitleInTitlebar": true,
"keybindings": [{
"command": "copy",
"keys": ["ctrl+c"]
},
{
"command": "paste",
"keys": ["ctrl+v"]
},
{
"command": "closeTab",
"keys": [
"ctrl+w"
]
},
{
"command": "newTab",
"keys": [
"ctrl+t"
]
},
{
"command": "splitHorizontal",
"keys": "ctrl+-"
},
{
"command": "splitVertical",
"keys": "ctrl+0"
}
],
"profiles": [{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell Core",
"tabTitle": "PoSh_Core",
"fontFace": "Cascadia Code PL",
"colorScheme": "VS Code",
"startingDirectory": "C:/Data",
"source": "Windows.Terminal.PowershellCore"
},
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell x64",
"tabTitle": "PoSh_x64",
"commandline": "powershell.exe",
"fontFace": "Cascadia Code PL",
"colorScheme": "VS Code",
"startingDirectory": "C:/Data",
"hidden": false
},
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44fb}",
"name": "Windows PowerShell x86",
"tabTitle": "PoSh_x86",
"commandline": "C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell.exe",
"fontFace": "Cascadia Code PL",
"colorScheme": "VS Code",
"startingDirectory": "C:/Data",
"hidden": false
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"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"
},
{
"guid": "{63e31163-583f-5850-9c1e-24e227dd2da9}",
"hidden": false,
"name": "PowerShell (dotnet global)",
"source": "Windows.Terminal.PowershellCore"
}
],
// Add custom color schemes to this array
"schemes": [{
"name": "Thanatos Dark",
"background": "#1a2b3c",
"foreground": "#e09887",
"selectionBackground": "#fef8ec",
"black": "#65737e",
"blue": "#0e9bd1",
"brightBlack": "#acacac",
"brightBlue": "#7899ba",
"brightCyan": "#0099ad",
"brightGreen": "#0de1b1",
"brightRed": "#d47186",
"brightWhite": "#fef8ec",
"brightYellow": "#d8cb32",
"brightPurple": "#ab43aa",
"purple": "#928ba6",
"cyan": "#008486",
"green": "#0099ad",
"red": "#ce4559",
"white": "#fef8ec",
"yellow": "#d8cb32"
},
{
"name": "Thanatos Light",
"background": "#f6f6f0",
"foreground": "#3f5060",
"selectionBackground": "#0e639c",
"black": "#36475b",
"blue": "#0e9bd1",
"brightBlack": "#65737e",
"brightBlue": "#7899ba",
"brightCyan": "#008a8e",
"brightGreen": "#0de1b1",
"brightRed": "#d47186",
"brightWhite": "#1a2b3c",
"brightYellow": "#eaa221",
"brightPurple": "#ab43aa",
"purple": "#ab43aa",
"cyan": "#008486",
"green": "#008a8e",
"red": "#e19887",
"white": "#7899ba",
"yellow": "#eaa221"
},
{
"name": "VS Code",
"background": "#282C34",
"black": "#000000",
"blue": "#3179b8",
"brightBlack": "#797979",
"brightBlue": "#5cb9eb",
"brightCyan": "#2BC4E2",
"brightGreen": "#1AD69C",
"brightPurple": "#DF89DD",
"brightRed": "#ee4c43",
"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