Skip to content

Instantly share code, notes, and snippets.

@joshuawootonn
Last active April 17, 2021 01:17
Show Gist options
  • Save joshuawootonn/c2db16b97a6c76114e6ab5fa655a2967 to your computer and use it in GitHub Desktop.
Save joshuawootonn/c2db16b97a6c76114e6ab5fa655a2967 to your computer and use it in GitHub Desktop.
terminal profile
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"copyOnSelect": false,
"copyFormatting": false,
"profiles": {
"defaults": {
"fontFace": "Fira Code",
"fontSize": 10,
"colorScheme": "nord",
"padding": "20,10,20,20",
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%\\Git"
},
"list": [
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe -nologo",
"hidden": false
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "Command Prompt",
"commandline": "cmd.exe -nologo",
"hidden": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
]
},
"schemes": [
{
"name": "nord",
"background": "#2e3440",
"foreground": "#d8dee9",
"black": "#3b4252",
"blue": "#81a1c1",
"brightBlack": "#4c566a",
"brightBlue": "#81a1c1",
"brightCyan": "#8fbcbb",
"brightGreen": "#a3be8c",
"brightPurple": "#b48ead",
"brightRed": "#bf616a",
"brightWhite": "#eceff4",
"brightYellow": "#ebcb8b",
"cyan": "#88c0d0",
"green": "#a3be8c",
"purple": "#b48ead",
"red": "#bf616a",
"white": "#e5e9f0",
"yellow": "#ebcb8b"
},
{
"name": "dracula",
"background": "#272935",
"black": "#272935",
"blue": "#BD93F9",
"brightBlack": "#555555",
"brightBlue": "#BD93F9",
"brightCyan": "#8BE9FD",
"brightGreen": "#50FA7B",
"brightPurple": "#FF79C6",
"brightRed": "#FF5555",
"brightWhite": "#FFFFFF",
"brightYellow": "#F1FA8C",
"cyan": "#6272A4",
"foreground": "#F8F8F2",
"green": "#50FA7B",
"purple": "#6272A4",
"red": "#FF5555",
"white": "#F8F8F2",
"yellow": "#FFB86C"
}
],
"keybindings": [
{
"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"
}
]
}
@joshuawootonn
Copy link
Author

added -nologo to the powershell startups to remove the copyright

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment