Last active
December 6, 2020 02:54
-
-
Save joe-scalise/567d5462a64a0a2f66485e152e55e994 to your computer and use it in GitHub Desktop.
Windows Terminal w/Nord Color Scheme and Example Custom Profile
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
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| // Use New-Guid for creating custom profiles | |
| // https://github.com/microsoft/terminal/blob/master/doc/cascadia/SettingsSchema.md | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "profiles": | |
| [ | |
| { | |
| // Make changes here to the powershell.exe profile | |
| "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "name": "Windows PowerShell", | |
| "commandline": "powershell.exe", | |
| "colorScheme": "Nord", | |
| "hidden": false | |
| }, | |
| { | |
| // Make changes here to the cmd.exe profile | |
| "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
| "name": "cmd", | |
| "commandline": "cmd.exe", | |
| "hidden": false | |
| }, | |
| { | |
| "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| "hidden": false, | |
| "name": "PowerShell Core", | |
| "source": "Windows.Terminal.PowershellCore" | |
| }, | |
| { | |
| "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
| "hidden": false, | |
| "name": "Azure Cloud Shell", | |
| "source": "Windows.Terminal.Azure" | |
| }, | |
| { | |
| "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "hidden": false, | |
| "name": "Ubuntu", | |
| "source": "Windows.Terminal.Wsl" | |
| }, | |
| { | |
| "acrylicOpacity": 0.9, | |
| "guid": "{b162bf0d-93cf-4145-a61a-b21e7c2aff51}", | |
| "backgroundImage" : "C:/Users/joe/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/RoamingState/night-sky.jpg", | |
| "backgroundImageOpacity" : 0.1, | |
| "backgroundImageStretchMode" : "uniformToFill", | |
| "name": "Custom PowerShell", | |
| "commandline": "powershell.exe", | |
| "hidden": false, | |
| "startingDirectory": "%USERPROFILE%", | |
| "closeOnExit": true, | |
| "colorScheme": "Nord", | |
| "cursorColor": "#C50F1F", | |
| "cursorShape": "emptyBox", | |
| "fontFace": "Consolas", | |
| "fontSize": 12, | |
| "historySize": 9001, | |
| "icon": "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png", | |
| "padding": "8, 8, 8, 8", | |
| "snapOnInput": true, | |
| "useAcrylic": true | |
| } | |
| ], | |
| // Add custom color schemes to this array | |
| "schemes": [ | |
| { | |
| "name": "Nord", | |
| "foreground": "#dee3ec", | |
| "background": "#2c3240", | |
| "black": "#2c3240", | |
| "red": "#C50F1F", | |
| "green": "#92b279", | |
| "yellow": "#C19C00", | |
| "blue": "#6e8fb3", | |
| "purple": "#881798", | |
| "cyan": "#76b3c5", | |
| "white": "#CCCCCC", | |
| "brightBlack": "#3b4356", | |
| "brightRed": "#af4b57", | |
| "brightGreen": "#92b279", | |
| "brightYellow": "#e5c078", | |
| "brightBlue": "#6e8fb3", | |
| "brightPurple": "#a3799d", | |
| "brightCyan": "#7daeac", | |
| "brightWhite": "#e7eaf1" | |
| } | |
| ], | |
| // Add any keybinding overrides to this array. | |
| // To unbind a default keybinding, set the command to "unbound" | |
| "keybindings": [] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment