Created
October 31, 2020 03:09
-
-
Save ManzDev/e2cc7a9a87b7d05e96977a1177a06f02 to your computer and use it in GitHub Desktop.
settings.json from Windows Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", | |
// To learn more about global settings, visit https://aka.ms/terminal-global-settings | |
"copyOnSelect": true, | |
"confirmCloseAllTabs": true, | |
"copyFormatting": false, | |
"largePasteWarning": true, | |
// To learn more about profiles, visit https://aka.ms/terminal-profile-settings | |
"profiles": { | |
"defaults": { | |
"fontFace": "Victor Mono", | |
"fontSize": 15, | |
"padding": "20, 30, 20, 30", | |
"useAcrylic": false, | |
"background": "#111", | |
"cursorShape": "filledBox", | |
"fontWeight": "medium", | |
"selectionBackground": "#2c0477", | |
"experimental.retroTerminalEffect": true | |
}, | |
"list": [ | |
{ | |
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", | |
"hidden": false, | |
"name": "Debian", | |
"startingDirectory": "//wsl$/Debian/home/manz/", | |
"colorScheme": "Manz Dark", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
// Make changes here to the powershell.exe profile. | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": true | |
}, | |
{ | |
// Make changes here to the cmd.exe profile. | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Símbolo del sistema", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
// Add custom color schemes to this array. | |
// To learn more about color schemes, visit https://aka.ms/terminal-color-schemes | |
"schemes": [ | |
{ | |
"background": "#1a1a1a", | |
"black": "#161616", | |
"blue": "#3768db", | |
"brightBlack": "#4b4b4b", | |
"brightBlue": "#6795eb", | |
"brightCyan": "#80c8c8", | |
"brightGreen": "#28ad16", | |
"brightPurple": "#a58af0", | |
"brightRed": "#ff2020", | |
"brightWhite": "#b3b3b3", | |
"brightYellow": "#657B83", | |
"cyan": "#19a599", | |
"foreground": "#ebebeb", | |
"green": "#31d14b", | |
"name": "Manz Dark", | |
"purple": "#8928da", | |
"red": "#c70000", | |
"white": "#EEE8D5", | |
"yellow": "#FFDD00" | |
} | |
], | |
// Add custom keybindings to this array. | |
// To unbind a key combination from your defaults.json, set the command to "unbound". | |
// To learn more about keybindings, visit https://aka.ms/terminal-keybindings | |
"keybindings": [ | |
// Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json. | |
// These two lines additionally bind them to Ctrl+C and Ctrl+V. | |
// To learn more about selection, visit https://aka.ms/terminal-selection | |
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
{ "command": "paste", "keys": "ctrl+v" }, | |
// Press Ctrl+Shift+F to open the search box | |
{ "command": "find", "keys": "ctrl+shift+f" }, | |
{ "command": "newTab", "keys": "ctrl+t" }, | |
{ "command": "closeTab", "keys": "ctrl+w" }, | |
{ "command": "toggleFocusMode", "keys": "shift+f11" }, | |
{ "command": { "action": "adjustFontSize", "delta": 1 }, "keys": "ctrl+plus" }, | |
{ "command": { "action": "adjustFontSize", "delta": -1 }, "keys": "ctrl+-" }, | |
{ "command": { "action": "toggleRetroEffect" }, "keys": "ctrl+º" }, | |
// Press Alt+Shift+D to open a new pane. | |
// - "split": "auto" makes this pane open in the direction that provides the most surface area. | |
// - "splitMode": "duplicate" makes the new pane use the focused pane's profile. | |
// To learn more about panes, visit https://aka.ms/terminal-panes | |
{ "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment