Created
April 19, 2020 22:34
-
-
Save Halkcyon/0d84840eb87742de96e5ed421b05a846 to your computer and use it in GitHub Desktop.
Windows Terminal settings w/ Nord Theme and Nerd Fonts
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
Show hidden 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 | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"confirmCloseAllTabs": false, | |
"requestedTheme": "dark", | |
"wordDelimiters": " _/\\()\"'-.,:;<>~!@#$%^&*|+=[]{}~?\u2502", | |
"profiles": { | |
"defaults": { | |
// Put settings here that you want to apply to all | |
"fontSize": 14, | |
"fontFace": "FiraCode NF", | |
"colorScheme": "Nord" | |
}, | |
"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": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell", | |
"source": "Windows.Terminal.PowershellCore" | |
}, | |
{ | |
"guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", | |
"hidden": false, | |
"name": "Debian", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": true, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"schemes": [ | |
{ | |
"name": "Nord", | |
"foreground": "#D8DEE9", | |
"background": "#2E3440", | |
"black": "#3B4252", | |
"red": "#BF616A", | |
"green": "#A3BE8C", | |
"yellow": "#EBCB8B", | |
"blue": "#81A1C1", | |
"purple": "#B48EAD", | |
"cyan": "#88C0D0", | |
"white": "#E5E9F0", | |
"brightBlack": "#4C566A", | |
"brightRed": "#BF616A", | |
"brightGreen": "#A3BE8C", | |
"brightYellow": "#EBCB8B", | |
"brightBlue": "#81A1C1", | |
"brightPurple": "#B48EAD", | |
"brightCyan": "#8FBCBB", | |
"brightWhite": "#ECEFF4" | |
} | |
], | |
// 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