Last active
October 29, 2020 19:09
-
-
Save heethesh/ca7b61e1dc3fee2fdd8579b109494673 to your computer and use it in GitHub Desktop.
Monokai theme for 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
"fontFace" : "Ubuntu Mono", | |
"fontSize" : 12, | |
"colorScheme": "Monokai", | |
"copyOnSelect": true, | |
"confirmCloseAllTabs": false | |
"schemes": | |
[ | |
{ | |
"name": "Monokai", | |
"background": "#272822", | |
"foreground": "#F8F8F2", | |
"selectionBackground": "#48473D", | |
"black": "#272822", | |
"blue": "#66D9EF", | |
"green": "#A6E22E", | |
"cyan": "#FD971F", | |
"red": "#F92672", | |
"purple": "#AE81FF", | |
"yellow": "#E6DB60", | |
"white": "#C0C0C0", | |
"brightBlack": "#75715E", | |
"brightBlue": "#66D9EF", | |
"brightGreen": "#A6E22E", | |
"brightCyan": "#FD971F", | |
"brightRed": "#F92672", | |
"brightPurple": "#AE81FF", | |
"brightYellow": "#E6DB60", | |
"brightWhite": "#F8F8F2" | |
} | |
] | |
"keybindings": | |
[ | |
{ "command": "closePane", "keys": ["ctrl+w"] }, | |
{ "command": "copy", "keys": ["ctrl+shift+c"] }, | |
{ "command": "paste", "keys": ["ctrl+shift+v"] }, | |
{ "command": "newTab", "keys": ["ctrl+shift+t"] }, | |
{ "command": "find", "keys": ["ctrl+f"] }, | |
{ "command": "toggleFullscreen", "keys": ["f11"] }, | |
{ "command": "scrollUp", "keys": ["ctrl+up"] }, | |
{ "command": "scrollDown", "keys": ["ctrl+down"] }, | |
{ "command": { "action": "switchToTab", "index": 0 }, "keys": ["alt+1"] }, | |
{ "command": { "action": "switchToTab", "index": 1 }, "keys": ["alt+2"] }, | |
{ "command": { "action": "switchToTab", "index": 2 }, "keys": ["alt+3"] }, | |
{ "command": { "action": "switchToTab", "index": 3 }, "keys": ["alt+4"] }, | |
{ "command": { "action": "switchToTab", "index": 4 }, "keys": ["alt+5"] }, | |
{ "command": { "action": "switchToTab", "index": 5 }, "keys": ["alt+6"] }, | |
{ "command": { "action": "switchToTab", "index": 6 }, "keys": ["alt+7"] }, | |
{ "command": { "action": "switchToTab", "index": 7 }, "keys": ["alt+8"] }, | |
{ "command": { "action": "splitPane", "split": "horizontal" }, "keys": ["ctrl+shift+o"] }, | |
{ "command": { "action": "splitPane", "split": "vertical" }, "keys": ["ctrl+shift+e"] }, | |
{ "command": { "action": "moveFocus", "direction": "left" }, "keys": ["ctrl+shift+left"] }, | |
{ "command": { "action": "moveFocus", "direction": "right" }, "keys": ["ctrl+shift+right"] }, | |
{ "command": { "action": "moveFocus", "direction": "up" }, "keys": ["ctrl+shift+up"] }, | |
{ "command": { "action": "moveFocus", "direction": "down" }, "keys": ["ctrl+shift+down"] } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment