-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
terminal-settings.json
94 lines (89 loc) · 2.7 KB
/
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
// 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}",
"disabledProfileSources": [
"Windows.Terminal.Azure"
],
"profiles":
[
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"name": "WSL Ubuntu",
"commandline": "wsl.exe",
"source": "Windows.Terminal.Wsl",
"closeOnExit": "always",
"colorScheme": "Snazzy",
"cursorColor": "#97979b",
"cursorShape": "filledBox",
"fontFace": "JetBrains Mono",
"fontSize": 11,
"padding": "17, 17, 17, 17"
},
{
"guid": "{0caa0dad-35be-5fdd-a8ff-afceeeaa6101}",
"name": "GitBash",
"commandline": "\"C:/git-sdk-64/usr/bin/bash.exe\" --login -c \"zsh\"",
"icon" : "C:/git-sdk-64/mingw64/share/git/git-for-windows.ico",
"closeOnExit": "always",
"colorScheme": "Snazzy",
"cursorColor": "#97979b",
"cursorShape": "filledBox",
"fontFace": "JetBrains Mono",
"fontSize": 11,
"padding": "17, 17, 17, 17"
},
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"name": "PowerShell Core",
"source": "Windows.Terminal.PowershellCore",
"closeOnExit": "always",
"fontFace": "JetBrains Mono",
"fontSize": 11,
"padding": "17, 17, 17, 17"
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"closeOnExit": "always",
"fontFace": "JetBrains Mono",
"fontSize": 11,
"padding": "17, 17, 17, 17"
},
{
/* Windows PowerShell - hidden */
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"hidden": true
}
],
// Add custom color schemes to this array
"schemes": [
{
"name": "Snazzy",
"foreground": "#eff0eb",
"background": "#0f111a",
"black": "#0f111a",
"red": "#ff5c57",
"green": "#5af78e",
"yellow": "#f3f99d",
"blue": "#57c7ff",
"purple": "#ff6ac1",
"cyan": "#9aedfe",
"white": "#f1f1f0",
"brightBlack": "#686868",
"brightRed": "#ff5c57",
"brightGreen": "#5af78e",
"brightYellow": "#f3f99d",
"brightBlue": "#57c7ff",
"brightPurple": "#ff6ac1",
"brightCyan": "#9aedfe",
"brightWhite": "#eff0eb"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}