-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
executable file
·103 lines (92 loc) · 3.09 KB
/
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
101
102
103
// Windows Terminal Settings
// 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": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"launchMode": "maximized",
"theme": "dark",
"profiles":
[
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"fontFace": "Iosevka Fixed",
"fontSize": 12,
"antialiasingMode": "cleartype",
"colorScheme": "Zenburn"
},
{
// 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": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
],
// Add custom color schemes to this array
"schemes": [
{
"name" : "Zenburn",
"background" : "#3A3A3A",
"foreground" : "#DCDCCC",
"black" : "#1E2320",
"blue" : "#506070",
"brightBlack" : "#709080",
"brightBlue" : "#94BFF3",
"brightCyan" : "#93E0E3",
"brightGreen" : "#C3BF9F",
"brightPurple" : "#EC93D3",
"brightRed" : "#DCA3A3",
"brightWhite" : "#FFFFFF",
"brightYellow" : "#F0DFAF",
"cyan" : "#8CD0D3",
"green" : "#60B48A",
"purple" : "#DC8CC3",
"red" : "#D78787",
"white" : "#DCDCCC",
"yellow" : "#DFAF8F"
},
{
"name" : "High-Contrast Zenburn",
"background" : "#1C1C1C",
"foreground" : "#DCDCCC",
"black" : "#1E2320",
"blue" : "#506070",
"brightBlack" : "#709080",
"brightBlue" : "#94BFF3",
"brightCyan" : "#93E0E3",
"brightGreen" : "#C3BF9F",
"brightPurple" : "#EC93D3",
"brightRed" : "#DCA3A3",
"brightWhite" : "#FFFFFF",
"brightYellow" : "#F0DFAF",
"cyan" : "#8CD0D3",
"green" : "#60B48A",
"purple" : "#DC8CC3",
"red" : "#D78787",
"white" : "#DCDCCC",
"yellow" : "#DFAF8F"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": [
{ "command": { "action": "splitPane", "split": "vertical" }, "keys": "alt+shift+\\" }
]
}