-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindows-terminal-settings.json
100 lines (88 loc) · 3.51 KB
/
windows-terminal-settings.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
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"copyOnSelect": false,
"copyFormatting": false,
"launchMode": "maximized",
"startupActions": "cmd.exe ; sp -H -s .3; sp -V -s .33; move-focus left; sp -V -s .5",
"profiles":
{
"defaults":
{
"colorScheme": "Gruvbox Dark",
"fontFace": "Cascadia Code"
},
"list":
[
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "Command Prompt",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{a2064f59-8f02-47c5-b1b5-8d41e88b77f5}",
"name": "vim",
"commandline": "vim.exe",
"icon": "%HOMEDRIVE%%HOMEPATH%\\tools\\vim\\vim82\\vim16x16.png",
"hidden": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
]
},
"schemes": [
{
"name": "Gruvbox Dark",
"black": "#1D2021",
"red": "#be0f17",
"green": "#868715",
"yellow": "#cc881a",
"blue": "#377375",
"purple": "#a04b73",
"cyan": "#578e57",
"white": "#978771",
"brightBlack": "#7f7061",
"brightRed": "#f73028",
"brightGreen": "#aab01e",
"brightYellow": "#f7b125",
"brightBlue": "#719586",
"brightPurple": "#c77089",
"brightCyan": "#7db669",
"brightWhite": "#e6d4a3",
"background": "#1C1C1C",
"foreground": "#e6d4a3"
}
],
"actions":
[
{ "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
{ "command": "find", "keys": "ctrl+shift+f" },
{ "command": "duplicateTab", "keys": "alt+y" },
{ "command": { "action": "moveFocus", "direction": "down" }, "keys": "alt+j" },
{ "command": { "action": "moveFocus", "direction": "left" }, "keys": "alt+h" },
{ "command": { "action": "moveFocus", "direction": "right" }, "keys": "alt+l" },
{ "command": { "action": "moveFocus", "direction": "up" }, "keys": "alt+k" },
{ "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" },
{ "command": { "action": "resizePane", "direction": "down" }, "keys": "alt+down" },
{ "command": { "action": "resizePane", "direction": "left" }, "keys": "alt+left" },
{ "command": { "action": "resizePane", "direction": "right" }, "keys": "alt+right" },
{ "command": { "action": "resizePane", "direction": "up" }, "keys": "alt+up" },
{ "command": { "action": "splitPane", "split": "horizontal" }, "keys": "alt+s" },
{ "command": { "action": "splitPane", "split": "vertical" }, "keys": "alt+v" },
{ "command": { "action": "moveFocus", "direction": "previous"}, "keys": "alt+q"},
{ "command": "togglePaneZoom", "keys": "alt+z" },
{ "command": { "action": "resizePane", "direction": "up"}, "keys": "alt+="},
{ "command": { "action": "resizePane", "direction": "down"}, "keys": "alt+-"}
]
}