-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.json
144 lines (144 loc) · 4.12 KB
/
profile.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// 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": "{6f9994f0-4403-5e85-9cce-98e5da3839bb}", // This should match the profile you want to make the default. In my case it is Ubuntu 16.04 LTS
"profiles": {
"defaults": {
// Put settings here that you want to apply to all profiles
},
"list": [
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"useAcrylic": true,
"acrylicOpacity": 0.75
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"hidden": false,
"name": "Ubuntu-18.04",
"source": "Windows.Terminal.Wsl",
"colorScheme": "Campbell",
"useAcrylic": true,
"acrylicOpacity": 0.75
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{6f9994f0-4403-5e85-9cce-98e5da3839bb}",
"hidden": false,
"name": "Ubuntu-16.04",
"source": "Windows.Terminal.Wsl",
"colorScheme": "Campbell",
"useAcrylic": true,
"acrylicOpacity": 0.75
}
]
},
// Add custom color schemes to this array
"schemes": [],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{
"command": "closePane",
"keys": "ctrl+w"
},
{
"command": "toggleFullscreen",
"keys": "ctrl+alt+f"
},
{
"command": {
"action": "splitPane",
"split": "horizontal"
},
"keys": "ctrl+shift+o"
},
{
"command": {
"action": "splitPane",
"split": "vertical"
},
"keys": "ctrl+shift+e"
},
{
"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": "switchToTab",
"index": 8
},
"keys": "alt+9"
}
]
}