Skip to content

Instantly share code, notes, and snippets.

@miltonbolonha
Created April 7, 2021 01:54
Show Gist options
  • Save miltonbolonha/fb25b4fd81be457151b666e0794ae875 to your computer and use it in GitHub Desktop.
Save miltonbolonha/fb25b4fd81be457151b666e0794ae875 to your computer and use it in GitHub Desktop.
WSL user profile 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": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"profiles": {
"defaults": {
// Put settings here that you want to apply to all profiles
},
"list": [
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"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": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
"hidden": false,
"name": "Ubuntu-20.04",
"source": "Windows.Terminal.Wsl",
"startingDirectory": "/\\wsl$/\\Ubuntu-20.04/\\home/\\milton",
"colorScheme": "nuktpls-theme-windows-terminal",
"fontFace": "Sudo",
"fontSize": 24
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"startingDirectory": "/\\wsl$/\\Ubuntu/\\home/\\milton",
"colorScheme": "nuktpls-theme-windows-terminal",
"fontFace": "Sudo",
"fontSize": 24,
"bellStyle": "none"
}
]
},
// Add custom color schemes to this array
"schemes": [
{
"name": "nuktpls-theme-windows-terminal",
"black": "#fefefe",
"red": "#ff4b3a",
"green": "#42ffaa",
"yellow": "#fede5d",
"blue": "#5670ff",
"purple": "#c670ff",
"cyan": "#f772e0",
"white": "#fefefe",
"brightBlack": "#fefefe",
"brightRed": "#f88414",
"brightGreen": "#72f1b8",
"brightYellow": "#fff951",
"brightBlue": "#36f9f6",
"brightPurple": "#e1acff",
"brightCyan": "#f92aad",
"brightWhite": "#fefefe",
"background": "#03051e",
"foreground": "#f0eff1",
"selectionBackground": "#181521",
"cursorColor": "#72f1b8"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{
"command": {
"action": "copy",
"singleLine": false
},
"keys": "ctrl+c"
},
{
"command": "paste",
"keys": "ctrl+v"
},
{
"command": {
"action": "splitPane",
"split": "horizontal"
},
"keys": "ctrl+shift+h"
},
{
"command": {
"action": "splitPane",
"split": "vertical"
},
"keys": "ctrl+shift+v"
},
{
"command": "closePane",
"keys": "ctrl+w"
},
],
"Globals": {
"additionalProperties": true,
"description": "Properties that affect the entire window, regardless of the profile settings.",
"properties": {
"fontFace": {
"default": "OCR A Extended",
"description": "Name of the font face used in the profile.",
"type": "string"
},
"fontSize": {
"default": 18,
"description": "Sets the font size.",
"minimum": 1,
"type": "integer"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment