Last active
October 22, 2020 04:44
-
-
Save Obooman/8623ebdee75549d29968ea5ebd297024 to your computer and use it in GitHub Desktop.
mac-like microsoft terminal profile with ubuntu as default.
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": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "initialRows": 20, | |
| "initialCols": 70, | |
| "alwaysShowTabs": true, | |
| "showTerminalTitleInTitlebar": true, | |
| "experimental_showTabsInTitlebar": true, | |
| "keybindings": [ | |
| { | |
| "command": "closeTab", | |
| "keys": [ | |
| "ctrl+w" | |
| ] | |
| }, | |
| { | |
| "command": "copy", | |
| "keys": [ | |
| "ctrl+c" | |
| ] | |
| }, | |
| { | |
| "command": "paste", | |
| "keys": [ | |
| "ctrl+v" | |
| ] | |
| }, | |
| { | |
| "command" : "newTab", | |
| "keys" : | |
| [ | |
| "ctrl+t" | |
| ] | |
| }, | |
| { | |
| "command" : "newTab", | |
| "keys" : | |
| [ | |
| "ctrl+n" | |
| ] | |
| }, | |
| { | |
| "command" : "openSettings", | |
| "keys" : | |
| [ | |
| "ctrl+," | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab0", | |
| "keys" : | |
| [ | |
| "ctrl+1" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab1", | |
| "keys" : | |
| [ | |
| "ctrl+2" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab2", | |
| "keys" : | |
| [ | |
| "ctrl+3" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab3", | |
| "keys" : | |
| [ | |
| "ctrl+4" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab4", | |
| "keys" : | |
| [ | |
| "ctrl+5" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab5", | |
| "keys" : | |
| [ | |
| "ctrl+6" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab6", | |
| "keys" : | |
| [ | |
| "ctrl+7" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab7", | |
| "keys" : | |
| [ | |
| "ctrl+8" | |
| ] | |
| }, | |
| { | |
| "command" : "switchToTab8", | |
| "keys" : | |
| [ | |
| "ctrl+9" | |
| ] | |
| } | |
| ], | |
| "profiles": [ | |
| { | |
| "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "hidden": false, | |
| "name": "Oh My Ubuntu", | |
| "source": "Windows.Terminal.Wsl", | |
| "fontFace": "Source Code Pro", | |
| "padding": "0, 0, 0, 0", | |
| "startingDirectory": "//wsl$/Ubuntu/home/oboochin/", | |
| "cursorHeight": 25, | |
| "fontSize": 11 | |
| }, | |
| { | |
| "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
| "hidden": false, | |
| "name": "Azure Cloud Shell", | |
| "source": "Windows.Terminal.Azure" | |
| } | |
| ], | |
| "schemes": [ | |
| { | |
| "name": "Campbell", | |
| "foreground": "#58B589", | |
| "background": "#343D46", | |
| "red":"#FF4737", | |
| "black" : "#0C0C0C", | |
| "blue" : "#0289FF", | |
| "brightBlack" : "#575653", | |
| "brightBlue" : "#029DF9", | |
| "brightCyan" : "#61D6D6", | |
| "brightGreen" : "#16C60C", | |
| "brightPurple" : "#B4009E", | |
| "brightRed" : "#FF6064", | |
| "brightWhite" : "#F2F2F2", | |
| "brightYellow" : "#F9F1A5", | |
| "cyan" : "#3A96DD", | |
| "green" : "#58B589", | |
| "purple" : "#881798", | |
| "white" : "#CCCCCC", | |
| "yellow" : "#C19C00" | |
| }, | |
| { | |
| "name": "Solarized Dark", | |
| "foreground": "#FDF6E3", | |
| "background": "#073642" | |
| }, | |
| { | |
| "name": "Solarized Light", | |
| "foreground": "#073642", | |
| "background": "#FDF6E3" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment