Created
March 28, 2021 19:41
-
-
Save gidhon/de004b76e8cabdcb5faef98bc7f3b4fa to your computer and use it in GitHub Desktop.
Windows Terminal - Settings
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": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"copyOnSelect": true, | |
"copyFormatting": false, | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"hidden": false, | |
"fontSize": 15, | |
"closeOnExit": true, | |
"useAcrylic": true, | |
"acrylicOpacity": 0.9, | |
"snapOnInput": true, | |
"padding": "15, 15, 15, 15" | |
}, | |
"list": | |
[ | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"colorScheme": "Solarized Dark", | |
"fontFace": "Fira Code" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
}, | |
{ | |
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"name": "Ubuntu-20.04", | |
"source": "Windows.Terminal.Wsl", | |
"startingDirectory": "\\\\wsl$\\Ubuntu-20.04\\home\\gideon", | |
"fontFace": "Hack", | |
"colorScheme": "One Half Dark" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"background": "#282C34", | |
"black": "#282C34", | |
"blue": "#61AFEF", | |
"brightBlack": "#5A6374", | |
"brightBlue": "#61AFEF", | |
"brightCyan": "#56B6C2", | |
"brightGreen": "#98C379", | |
"brightPurple": "#C678DD", | |
"brightRed": "#E06C75", | |
"brightWhite": "#DCDFE4", | |
"brightYellow": "#E5C07B", | |
"cyan": "#56B6C2", | |
"foreground": "#DCDFE4", | |
"green": "#98C379", | |
"name": "One Half Dark", | |
"purple": "#C678DD", | |
"red": "#E06C75", | |
"white": "#DCDFE4", | |
"yellow": "#E5C07B" | |
}, | |
{ | |
"background": "#073642", | |
"black": "#073642", | |
"blue": "#268BD2", | |
"brightBlack": "#002B36", | |
"brightBlue": "#839496", | |
"brightCyan": "#93A1A1", | |
"brightGreen": "#586E75", | |
"brightPurple": "#6C71C4", | |
"brightRed": "#CB4B16", | |
"brightWhite": "#FDF6E3", | |
"brightYellow": "#657B83", | |
"cyan": "#2AA198", | |
"foreground": "#FDF6E3", | |
"green": "#859900", | |
"name": "Solarized Dark", | |
"purple": "#D33682", | |
"red": "#D30102", | |
"white": "#EEE8D5", | |
"yellow": "#B58900" | |
} | |
], | |
"actions": | |
[ | |
{ "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
{ "command": "paste", "keys": "ctrl+v" }, | |
{ "command": "find", "keys": "ctrl+shift+f" }, | |
{ "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